mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[incubator/rundeck] Make "data" volume configurable from values file. (#23795)
* Updated new image Signed-off-by: Etash Singh <etash.singh@hpe.com> * Configurable mount path for data volume Signed-off-by: Etash Singh <etash.singh@hpe.com> * Updated chart version Signed-off-by: Etash Singh <etash.singh@hpe.com> * Updated deployment.yaml Signed-off-by: Etash Singh <etash.singh@hpe.com> Co-authored-by: Etash Singh <etash.singh@hpe.com>
This commit is contained in:
co-authored by
Etash Singh
parent
eb5de49994
commit
e2c16efcfa
@@ -2,7 +2,7 @@ apiVersion: v1
|
||||
description: A Rundeck chart for Kubernetes
|
||||
name: rundeck
|
||||
home: https://github.com/rundeck/rundeck
|
||||
version: 0.3.3
|
||||
version: 0.3.4
|
||||
appVersion: 3.2.7
|
||||
keywords:
|
||||
- rundeck
|
||||
|
||||
@@ -81,8 +81,9 @@ spec:
|
||||
- name: RUNDECK_LOGGING_STRATEGY
|
||||
value: "CONSOLE"
|
||||
volumeMounts:
|
||||
- name: data
|
||||
mountPath: /home/rundeck/server/data
|
||||
{{- if .Values.volumeMounts }}
|
||||
{{- toYaml .Values.volumeMounts | nindent 10}}
|
||||
{{- end }}
|
||||
{{- if .Values.rundeck.sshSecrets }}
|
||||
- name: sshkeys
|
||||
mountPath: /home/rundeck/.ssh
|
||||
@@ -99,9 +100,6 @@ spec:
|
||||
{{- if .Values.rundeck.extraConfigSecret }}
|
||||
- name: extra-config
|
||||
mountPath: /home/rundeck/extra/
|
||||
{{- end }}
|
||||
{{- if .Values.volumeMounts }}
|
||||
{{- toYaml .Values.volumeMounts | nindent 10}}
|
||||
{{- end }}
|
||||
ports:
|
||||
- name: rundeck
|
||||
|
||||
@@ -146,10 +146,10 @@ volumes: ""
|
||||
# - name: plugins
|
||||
# emptyDir: {}
|
||||
|
||||
# volumeMounts to add to the rundeck container
|
||||
volumeMounts: ""
|
||||
# - mountPath: /home/rundeck/libext/
|
||||
# name: plugins
|
||||
# volumeMounts to add to the rundeck container and configurable paths
|
||||
volumeMounts:
|
||||
- name: data
|
||||
mountPath: /home/rundeck/server/data
|
||||
|
||||
# initContainers can be used to download plugins or customise your rundeck installation
|
||||
initContainers: ""
|
||||
|
||||
Reference in New Issue
Block a user