mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-09-17 15:21:54 +00:00
* Don't panic in case of a Basenine connection error and try to reconnect with 3 seconds intervals * More improvements
21 lines
747 B
Go
21 lines
747 B
Go
package shared
|
|
|
|
const (
|
|
MizuFilteringOptionsEnvVar = "SENSITIVE_DATA_FILTERING_OPTIONS"
|
|
SyncEntriesConfigEnvVar = "SYNC_ENTRIES_CONFIG"
|
|
HostModeEnvVar = "HOST_MODE"
|
|
NodeNameEnvVar = "NODE_NAME"
|
|
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"
|
|
MizuAgentImageRepo = "docker.io/up9inc/mizu"
|
|
BasenineHost = "127.0.0.1"
|
|
BaseninePort = "9099"
|
|
BasenineReconnectInterval = 3
|
|
)
|