mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-06-02 04:56:44 +00:00
* Update config.go, tapConfig.go, and models.go * WIP * Update go.sum * Update tapRunner.go * Update tap.go * WIP * WIP * Update Dockerfile, main.go, and 2 more files... * WIP * Update utils.go, tapClusterResourceManagement.go, and utils.go * Merge branch 'develop' * Update metadata_controller.go, utils.go, and 2 more files... * Update main.go, utils.go, and tapRunner.go * Update tapRunner.go * Update config.go, config.go, and models.go * Update main.go, main.go, and stats_provider_test.go * Update provider.go * bug fixes * Update main.go, metadata_controller.go, and 13 more files... * Update metadata_controller.go, status_controller.go, and 4 more files... * Update main.go, config.go, and 3 more files... * Update tapRunner.go * Update config.go, stats_provider_test.go, and consts.go
20 lines
960 B
Go
20 lines
960 B
Go
package kubernetes
|
|
|
|
const (
|
|
MizuResourcesPrefix = "mizu-"
|
|
ApiServerPodName = MizuResourcesPrefix + "api-server"
|
|
ClusterRoleBindingName = MizuResourcesPrefix + "cluster-role-binding"
|
|
DaemonRoleBindingName = MizuResourcesPrefix + "cluster-role-binding-daemon"
|
|
ClusterRoleName = MizuResourcesPrefix + "cluster-role"
|
|
DaemonRoleName = MizuResourcesPrefix + "cluster-role-daemon"
|
|
K8sAllNamespaces = ""
|
|
RoleBindingName = MizuResourcesPrefix + "role-binding"
|
|
RoleName = MizuResourcesPrefix + "role"
|
|
ServiceAccountName = MizuResourcesPrefix + "service-account"
|
|
TapperDaemonSetName = MizuResourcesPrefix + "tapper-daemon-set"
|
|
TapperPodName = MizuResourcesPrefix + "tapper"
|
|
ConfigMapName = MizuResourcesPrefix + "config"
|
|
PersistentVolumeClaimName = MizuResourcesPrefix + "volume-claim"
|
|
MinKubernetesServerVersion = "1.16.0"
|
|
)
|