From fcef994a85ee1e2f581e2dc2d2f2ab968632db25 Mon Sep 17 00:00:00 2001 From: yuryn Date: Thu, 26 Oct 2017 17:10:50 +0300 Subject: Add option to disable specific deployments Add option to disable any deployment by using conditions in helm templates. Each deployment will get helm parameter - boolean flag allowing to disable it. The flags can be listed in the custom values.yaml file that can be passed to the createAll script with '-v' command line option. Change-Id: I32b795de46c72915c2201c94c23f4e061971bb56 Issue-ID: OOM-380 Signed-off-by: yuryn --- kubernetes/uui/templates/all-services.yaml | 2 ++ kubernetes/uui/templates/uui-deployment.yaml | 2 ++ 2 files changed, 4 insertions(+) (limited to 'kubernetes/uui') diff --git a/kubernetes/uui/templates/all-services.yaml b/kubernetes/uui/templates/all-services.yaml index 2771905642..9135622116 100644 --- a/kubernetes/uui/templates/all-services.yaml +++ b/kubernetes/uui/templates/all-services.yaml @@ -1,3 +1,4 @@ +#{{ if not .Values.disableUuiUui }} apiVersion: v1 kind: Service metadata: @@ -24,3 +25,4 @@ spec: selector: app: uui type: NodePort +#{{ end }} \ No newline at end of file diff --git a/kubernetes/uui/templates/uui-deployment.yaml b/kubernetes/uui/templates/uui-deployment.yaml index e23202a907..41d33b194e 100644 --- a/kubernetes/uui/templates/uui-deployment.yaml +++ b/kubernetes/uui/templates/uui-deployment.yaml @@ -1,3 +1,4 @@ +#{{ if not .Values.disableUuiUui }} apiVersion: extensions/v1beta1 kind: Deployment metadata: @@ -32,3 +33,4 @@ spec: periodSeconds: 10 imagePullSecrets: - name: "{{ .Values.nsPrefix }}-docker-registry-key" +#{{ end }} \ No newline at end of file -- cgit 1.2.3-korg