mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-05-08 10:17:49 +00:00
* WIP * wip * Update keto.yml, socket_routes.go, and 12 more files... * fixes and docs * Update api.js * Update auth.go and api.js * Update user_role_provider.go * Update config_routes.go and api.js * Update consts.go
24 lines
1.1 KiB
Go
24 lines
1.1 KiB
Go
package shared
|
|
|
|
const (
|
|
MizuFilteringOptionsEnvVar = "SENSITIVE_DATA_FILTERING_OPTIONS"
|
|
SyncEntriesConfigEnvVar = "SYNC_ENTRIES_CONFIG"
|
|
HostModeEnvVar = "HOST_MODE"
|
|
NodeNameEnvVar = "NODE_NAME"
|
|
TappedAddressesPerNodeDictEnvVar = "TAPPED_ADDRESSES_PER_HOST"
|
|
ConfigDirPath = "/app/config/"
|
|
DataDirPath = "/app/data/"
|
|
ValidationRulesFileName = "validation-rules.yaml"
|
|
ContractFileName = "contract-oas.yaml"
|
|
ConfigFileName = "mizu-config.json"
|
|
GoGCEnvVar = "GOGC"
|
|
DefaultApiServerPort = 8899
|
|
LogLevelEnvVar = "LOG_LEVEL"
|
|
BasenineHost = "127.0.0.1"
|
|
BaseninePort = "9099"
|
|
BasenineImageRepo = "ghcr.io/up9inc/basenine"
|
|
BasenineImageTag = "v0.3.0"
|
|
KratosImageDefault = "gcr.io/up9-docker-hub/mizu-kratos/stable:0.0.0"
|
|
KetoImageDefault = "gcr.io/up9-docker-hub/mizu-keto/stable:0.0.0"
|
|
)
|