fix(standard-container/functional): create namespace for Helm release

Before Helm would fail to deploy the release if the namespace was
missing in the cluster. Now Helm will create the namespace if missing.

This isn't hit when the target cluster is the same cluster running the
tekton pipelines. This issue is only hit when the kubeconfig provided
via jarvis.yaml is for another cluster which might not have the
namespace created.

Change-Id: I3fdc6b353a2af2a667884c3250108b9f6c6b9a02
This commit is contained in:
Dustin Specker 2021-03-12 15:10:40 -06:00
parent 43dea28928
commit ef9d254e55

View File

@ -8,7 +8,7 @@
#Deploy CNF
- name: Deploy charts
shell: helm upgrade --install --kubeconfig="{{ cluster_kubeconfig_path }}/kubeconfig" "{{ chart.release_name }}" "{{ chart.project }}-staging/{{ chart.chart_name }}" --version="{{ chart.version }}" --namespace="{{ chart.namespace }}"
shell: helm upgrade --install --create-namespace --kubeconfig="{{ cluster_kubeconfig_path }}/kubeconfig" "{{ chart.release_name }}" "{{ chart.project }}-staging/{{ chart.chart_name }}" --version="{{ chart.version }}" --namespace="{{ chart.namespace }}"
loop: "{{ charts }}"
loop_control:
loop_var: "chart"