mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-09-01 18:47:39 +00:00
* Upgrade Basenine version from `0.2.26` to `0.3.0` * Remove `Summarize` method from `Dissector` interface and refactor the data structures in `tap/api/api.go` * Rename `MizuEntry` to `Entry` and `BaseEntryDetails` to `BaseEntry` * Populate `ContractStatus` field as well * Update the cheatsheet * Upgrade the Basenine version in the helm chart as well * Remove a forgoten `console.log` call
22 lines
916 B
Go
22 lines
916 B
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"
|
|
)
|