Skip to content
Snippets Groups Projects
Commit cc1cf6ff authored by michael.koch's avatar michael.koch
Browse files

CTR-216 Make configMap creation optional

parent 77ab3cd9
No related branches found
No related tags found
No related merge requests found
dependencies:
- name: ox-common
repository: oci://registry.open-xchange.com/common/charts
version: 1.0.13
digest: sha256:52b19d958411d91eabf30266f594ab6b2a4b76997c4c93d6c6bb4a28d64ca716
generated: "2022-01-27T10:44:48.784704+01:00"
version: 1.0.17
digest: sha256:0ab9e19964f4c46bbe7bfc5ffff6b086b92f2309f1ae895fc814945b7b95ee9c
generated: "2022-02-04T10:54:27.434320472+01:00"
......@@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 2.0.4
version: 2.0.5
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
......
{{- if (not .Values.existingConfigMap) -}}
apiVersion: v1
kind: ConfigMap
metadata:
......@@ -6,3 +7,4 @@ data:
urls.yaml: |
manifests:
{{- toYaml .Values.manifests | nindent 6 }}
{{- end }}
......@@ -53,5 +53,5 @@ spec:
volumes:
- name: manifest-config
configMap:
name: {{ include "ox-common.names.fullname" . }}
name: {{ .Values.existingConfigMap | default (include "ox-common.names.fullname" .) }}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment