fix(plume): Add appsettings
This commit is contained in:
@@ -52,6 +52,10 @@ spec:
|
|||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: data
|
- name: data
|
||||||
mountPath: /data
|
mountPath: /data
|
||||||
|
- name: appsettings
|
||||||
|
mountPath: /app/appsettings.json
|
||||||
|
subPath: appsettings.json
|
||||||
|
readOnly: true
|
||||||
{{- if .Values.service.https }}
|
{{- if .Values.service.https }}
|
||||||
- name: tls-certificates
|
- name: tls-certificates
|
||||||
mountPath: /app/tls
|
mountPath: /app/tls
|
||||||
@@ -65,6 +69,10 @@ spec:
|
|||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: data
|
- name: data
|
||||||
mountPath: /data
|
mountPath: /data
|
||||||
|
- name: appsettings
|
||||||
|
mountPath: /app/appsettings.json
|
||||||
|
subPath: appsettings.json
|
||||||
|
readOnly: true
|
||||||
{{- end }}
|
{{- end }}
|
||||||
volumes:
|
volumes:
|
||||||
- name: data
|
- name: data
|
||||||
@@ -74,6 +82,9 @@ spec:
|
|||||||
{{- else }}
|
{{- else }}
|
||||||
emptyDir: {}
|
emptyDir: {}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
- name: appsettings
|
||||||
|
configMap:
|
||||||
|
name: {{ template "Plume.fullname" . }}-appsettings
|
||||||
{{- with .Values.nodeSelector }}
|
{{- with .Values.nodeSelector }}
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
|
|||||||
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"archmaesterUrl": "https://atlantis.src.oceanbox.io",
|
||||||
|
"appName": "plume",
|
||||||
|
"appEnv": "staging",
|
||||||
|
"appNamespace": "staging-plume",
|
||||||
|
"appVersion": "0.0.0",
|
||||||
|
"cacheDir": "/data/archives/cache"
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user