mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-04-30 04:45:54 +00:00
* Removed policy rules (validation rules) feature * updated test pcap * Remove rules * fix replay in rules Co-authored-by: Roy Island <roy@up9.com> Co-authored-by: RoyUP9 <87927115+RoyUP9@users.noreply.github.com> Co-authored-by: Roee Gadot <roee.gadot@up9.com>
17 lines
554 B
Go
17 lines
554 B
Go
package shared
|
|
|
|
const (
|
|
MizuFilteringOptionsEnvVar = "SENSITIVE_DATA_FILTERING_OPTIONS"
|
|
HostModeEnvVar = "HOST_MODE"
|
|
NodeNameEnvVar = "NODE_NAME"
|
|
ConfigDirPath = "/app/config/"
|
|
DataDirPath = "/app/data/"
|
|
ConfigFileName = "mizu-config.json"
|
|
DefaultApiServerPort = 8899
|
|
LogLevelEnvVar = "LOG_LEVEL"
|
|
MizuAgentImageRepo = "docker.io/up9inc/mizu"
|
|
BasenineHost = "127.0.0.1"
|
|
BaseninePort = "9099"
|
|
BasenineReconnectInterval = 3
|
|
)
|