diff options
author | yuryn <Yury.Novitsky@Amdocs.com> | 2017-10-26 17:10:50 +0300 |
---|---|---|
committer | yuryn <Yury.Novitsky@Amdocs.com> | 2017-10-29 13:39:03 +0200 |
commit | 69a352f02038756c165762e96c78653313c758c2 (patch) | |
tree | 3d618586f53784359e55867df35afce2e10eb2dc | |
parent | c249ac62095eaedc27faeab627ef97ac71af68f7 (diff) |
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 <Yury.Novitsky@Amdocs.com>
-rw-r--r-- | templates/all-services.yaml | 2 | ||||
-rw-r--r-- | templates/robot-deployment.yaml | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/templates/all-services.yaml b/templates/all-services.yaml index f126bc9..196e7b1 100644 --- a/templates/all-services.yaml +++ b/templates/all-services.yaml @@ -1,3 +1,4 @@ +#{{ if not .Values.disableRobotRobot }} apiVersion: v1 kind: Service metadata: @@ -12,3 +13,4 @@ spec: selector: app: robot type: NodePort +#{{ end }}
\ No newline at end of file diff --git a/templates/robot-deployment.yaml b/templates/robot-deployment.yaml index da017db..561d795 100644 --- a/templates/robot-deployment.yaml +++ b/templates/robot-deployment.yaml @@ -1,3 +1,4 @@ +#{{ if not .Values.disableRobotRobot }} apiVersion: extensions/v1beta1 kind: Deployment metadata: @@ -79,3 +80,4 @@ spec: path: /dockerdata-nfs/{{ .Values.nsPrefix }}/robot/robot/assets/asdc/base_vlb/dnsscaling.env imagePullSecrets: - name: "{{ .Values.nsPrefix }}-docker-registry-key" +#{{ end }}
\ No newline at end of file |