mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-07-10 00:51:09 +00:00
* Remove the `agent` directory * Use the new `kubeshark/hub` Docker image * Remove `Dockerfile` * Update `Makefile` * Fix linter * Change `api-server` suffix to `hub`
16 lines
581 B
Go
16 lines
581 B
Go
package shared
|
|
|
|
const (
|
|
KubesharkFilteringOptionsEnvVar = "SENSITIVE_DATA_FILTERING_OPTIONS"
|
|
HostModeEnvVar = "HOST_MODE"
|
|
NodeNameEnvVar = "NODE_NAME"
|
|
ConfigDirPath = "/app/config/"
|
|
DataDirPath = "/app/data/"
|
|
ConfigFileName = "kubeshark-config.json"
|
|
LogLevelEnvVar = "LOG_LEVEL"
|
|
KubesharkAgentImageRepo = "docker.io/kubeshark/hub"
|
|
BasenineHost = "127.0.0.1"
|
|
BaseninePort = "9099"
|
|
BasenineReconnectInterval = 3
|
|
)
|