split to 2 values for more granular configuration
This commit is contained in:
parent
2eccf93925
commit
0b3877eddb
2 changed files with 6 additions and 2 deletions
|
@ -89,12 +89,14 @@ spec:
|
||||||
{{- with (concat .Values.global.env .Values.repoServer.env) }}
|
{{- with (concat .Values.global.env .Values.repoServer.env) }}
|
||||||
{{- toYaml . | nindent 10 }}
|
{{- toYaml . | nindent 10 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
- name: CODEFRESH_IGNORE_VERSION_CONFIG
|
|
||||||
value: {{ not .Values.applicationVersioning.enabled | quote }}
|
|
||||||
{{- if .Values.openshift.enabled }}
|
{{- if .Values.openshift.enabled }}
|
||||||
- name: USER_NAME
|
- name: USER_NAME
|
||||||
value: argocd
|
value: argocd
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
- name: CODEFRESH_APPVERSION_ENABLE
|
||||||
|
value: {{ .Values.applicationVersioning.enabled | quote }}
|
||||||
|
- name: CODEFRESH_APPVERSION_USE_CONFIG
|
||||||
|
value: {{ .Values.applicationVersioning.useApplicationConfiguration | quote }}
|
||||||
- name: ARGOCD_RECONCILIATION_TIMEOUT
|
- name: ARGOCD_RECONCILIATION_TIMEOUT
|
||||||
valueFrom:
|
valueFrom:
|
||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
|
|
|
@ -29,6 +29,8 @@ openshift:
|
||||||
applicationVersioning:
|
applicationVersioning:
|
||||||
# -- enables the Codefresh application versioning feature
|
# -- enables the Codefresh application versioning feature
|
||||||
enabled: true
|
enabled: true
|
||||||
|
# -- use ApplicationConfiguration CRD to manage application versioning
|
||||||
|
useApplicationConfiguration: true
|
||||||
|
|
||||||
## Custom resource configuration
|
## Custom resource configuration
|
||||||
crds:
|
crds:
|
||||||
|
|
Loading…
Reference in a new issue