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 | 5d0587b8f530ca523c1b0baf4c4391e9a17baa97 (patch) | |
tree | 871432f8c387156c7dd7091eb0be184fa7020157 /templates/hbase-deployment.yaml | |
parent | 89f67c13db2479d083fa6d6cb77397c978ec63a0 (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>
Diffstat (limited to 'templates/hbase-deployment.yaml')
-rw-r--r-- | templates/hbase-deployment.yaml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/templates/hbase-deployment.yaml b/templates/hbase-deployment.yaml index c261504..fd8e10c 100644 --- a/templates/hbase-deployment.yaml +++ b/templates/hbase-deployment.yaml @@ -1,3 +1,4 @@ +#{{ if not .Values.disableAaiHbase }} apiVersion: extensions/v1beta1 kind: Deployment metadata: @@ -41,3 +42,4 @@ spec: path: /etc/localtime imagePullSecrets: - name: "{{ .Values.nsPrefix }}-docker-registry-key" +#{{ end }}
\ No newline at end of file |