Add option to disable specific deployments
authoryuryn <Yury.Novitsky@Amdocs.com>
Thu, 26 Oct 2017 14:10:50 +0000 (17:10 +0300)
committeryuryn <Yury.Novitsky@Amdocs.com>
Sun, 29 Oct 2017 11:39:03 +0000 (13:39 +0200)
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 <Yury.Novitsky@Amdocs.com>
templates/aaf-cs-deployment.yaml
templates/aaf-deployment.yaml
templates/all-services.yaml

index 23968f9..acd6a7a 100644 (file)
@@ -1,3 +1,4 @@
+#{{ if not .Values.disableAafAafCs }}
 apiVersion: extensions/v1beta1
 kind: Deployment
 metadata:
@@ -34,3 +35,4 @@ spec:
             path: /dockerdata-nfs/{{ .Values.nsPrefix }}/aaf/data
       imagePullSecrets:
       - name: {{ .Values.nsPrefix }}-docker-registry-key
+#{{ end }}
\ No newline at end of file
index 5950b92..56c99ea 100644 (file)
@@ -1,3 +1,4 @@
+#{{ if not .Values.disableAafAaf }}
 apiVersion: extensions/v1beta1
 kind: Deployment
 metadata:
@@ -62,3 +63,4 @@ spec:
             path: /dockerdata-nfs/{{ .Values.nsPrefix }}/aaf/data2
       imagePullSecrets:
       - name: {{ .Values.nsPrefix }}-docker-registry-key
+#{{ end }}
\ No newline at end of file
index 0d1dc22..be04180 100644 (file)
@@ -1,3 +1,4 @@
+#{{ if not .Values.disableAafAafCs }}
 apiVersion: v1
 kind: Service
 metadata:
@@ -18,6 +19,8 @@ spec:
   selector:
     app: aaf-cs
   clusterIP: None
+#{{ end }}
+#{{ if not .Values.disableAafAaf }}
 ---
 apiVersion: v1
 kind: Service
@@ -34,3 +37,4 @@ spec:
   selector:
     app: clamp
   type: NodePort
+#{{ end }}
\ No newline at end of file