Feature flag to enable/disable canary + optional prometheus install (#937)

This commit is contained in:
smruthi2187
2018-10-22 15:24:43 -07:00
committed by GitHub
parent e7f1d4564a
commit 0a8c6e97a6
20 changed files with 304 additions and 28 deletions
+2
View File
@@ -241,6 +241,8 @@ build_yamls() {
helm template ${c} -n ${c}-${version} --set serviceType=NodePort,routerServiceType=NodePort > ${c}-${version}-minikube.yaml
# for environments support ELB
helm template ${c} -n ${c}-${version} > ${c}-${version}.yaml
# for cases where prometheus installation along with fission is not preferred
helm template ${c} -n ${c}-${version} --set canaryDeployment.prometheusDeploy=false > ${c}-${version}-fission-only.yaml
mv *.yaml ${BUILDDIR}/yamls/
done