From 64459a74e3090898d51b91ef37785e710e0d5834 Mon Sep 17 00:00:00 2001 From: Maxim Goncharenko Date: Tue, 14 May 2019 17:58:59 +0300 Subject: [PATCH] Updated constants. Added constants for Validating Webhook --- config/config.go | 48 +++++++++++++++++++++++++++++++++++++----------- 1 file changed, 37 insertions(+), 11 deletions(-) diff --git a/config/config.go b/config/config.go index 30182e5ea2..8e0e8eb359 100644 --- a/config/config.go +++ b/config/config.go @@ -2,22 +2,48 @@ package config const ( // These constants MUST be equal to the corresponding names in service definition in definitions/install.yaml - KubePolicyDeploymentName = "kube-policy-deployment" - KubePolicyNamespace = "kube-system" - WebhookServiceName = "kube-policy-svc" - WebhookConfigName = "nirmata-kube-policy-webhook-cfg" - MutationWebhookName = "webhook.nirmata.kube-policy" + KubePolicyNamespace = "kube-system" + WebhookServiceName = "kube-policy-svc" + + MutatingWebhookConfigurationName = "kube-policy-mutating-webhook-cfg" + MutatingWebhookName = "nirmata.kube-policy.mutating-webhook" + + ValidatingWebhookConfigurationName = "kube-policy-validating-webhook-cfg" + ValidatingWebhookName = "nirmata.kube-policy.validating-webhook" // Due to kubernetes issue, we must use next literal constants instead of deployment TypeMeta fields - // Pull request: https://github.com/kubernetes/kubernetes/pull/63972 - // When pull request is closed, we should use TypeMeta struct instead of this constants - DeploymentKind = "Deployment" - DeploymentAPIVersion = "extensions/v1beta1" + // Issue: https://github.com/kubernetes/kubernetes/pull/63972 + // When the issue is closed, we should use TypeMeta struct instead of this constants + DeploymentKind = "Deployment" + DeploymentAPIVersion = "extensions/v1beta1" + KubePolicyDeploymentName = "kube-policy-deployment" ) var ( - WebhookServicePath = "/mutate" - WebhookConfigLabels = map[string]string{ + MutatingWebhookServicePath = "/mutate" + ValidatingWebhookServicePath = "/validate" + KubePolicyAppLabels = map[string]string{ "app": "kube-policy", } + + SupportedKinds = []string{ + "ConfigMap", + "CronJob", + "DaemonSet", + "Deployment", + "Endpoints", + "HorizontalPodAutoscaler", + "Ingress", + "Job", + "LimitRange", + "Namespace", + "NetworkPolicy", + "PersistentVolumeClaim", + "PodDisruptionBudget", + "PodTemplate", + "ResourceQuota", + "Secret", + "Service", + "StatefulSet", + } )