diff --git a/charts/runwhen-local/Chart.yaml b/charts/runwhen-local/Chart.yaml index 0834baa..76c22c3 100644 --- a/charts/runwhen-local/Chart.yaml +++ b/charts/runwhen-local/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: runwhen-local description: A Helm chart RunWhen Local - A community powered troubleshooting cheat sheet type: application -version: 0.1.23 +version: 0.1.24 appVersion: "0.5.20" icon: https://storage.googleapis.com/runwhen-nonprod-shared-images/icons/runwhen_icon.png dependencies: diff --git a/charts/runwhen-local/templates/local-configmap.yaml b/charts/runwhen-local/templates/local-configmap.yaml index 448680c..5099020 100644 --- a/charts/runwhen-local/templates/local-configmap.yaml +++ b/charts/runwhen-local/templates/local-configmap.yaml @@ -15,7 +15,22 @@ data: codeCollections: {{- toYaml .Values.runwhenLocal.workspaceInfo.configMap.data.codeCollections | nindent 6 }} cloudConfig: - {{- toYaml .Values.runwhenLocal.workspaceInfo.configMap.data.cloudConfig | nindent 6 }} + {{- if .Values.runwhenLocal.workspaceInfo.configMap.data.cloudConfig.kubernetes }} + kubernetes: + {{- toYaml .Values.runwhenLocal.workspaceInfo.configMap.data.cloudConfig.kubernetes | nindent 8 }} + {{- end }} + {{- if .Values.runwhenLocal.workspaceInfo.configMap.data.cloudConfig.azure }} + azure: + {{- toYaml .Values.runwhenLocal.workspaceInfo.configMap.data.cloudConfig.azure | nindent 8 }} + {{- end }} + {{- if .Values.runwhenLocal.workspaceInfo.configMap.data.cloudConfig.gcp }} + gcp: + {{- toYaml .Values.runwhenLocal.workspaceInfo.configMap.data.cloudConfig.gcp | nindent 8 }} + {{- end }} + {{- if .Values.runwhenLocal.workspaceInfo.configMap.data.cloudConfig.aws }} + aws: + {{- toYaml .Values.runwhenLocal.workspaceInfo.configMap.data.cloudConfig.aws | nindent 8 }} + {{- end }} custom: {{- toYaml .Values.runwhenLocal.workspaceInfo.configMap.data.custom | nindent 6 }} {{ end }}