Add imagePullSecrets feature and update versions in Chart.yaml (#23579)

Signed-off-by: Damian Fiłonowicz <damianomancity@gmail.com>
This commit is contained in:
Damian Fiłonowicz
2020-08-23 09:27:40 -07:00
committed by GitHub
parent 8bcb6c7d9c
commit 92be1ddfc5
4 changed files with 7 additions and 3 deletions
+2 -2
View File
@@ -2,8 +2,8 @@ apiVersion: v1
description: A Rundeck chart for Kubernetes
name: rundeck
home: https://github.com/rundeck/rundeck
version: 0.3.1
appVersion: 3.2.8
version: 0.3.2
appVersion: 3.2.7
keywords:
- rundeck
- jobs
+1
View File
@@ -20,6 +20,7 @@ deployment.strategy | Sets the K8s rollout strategy for the Rundeck deployment |
image.repository | Name of the image to run, without the tag. | [rundeck/rundeck](https://github.com/rundeck/rundeck)
image.tag | The image tag to use. | 3.2.7
image.pullPolicy | The kubernetes image pull policy. | IfNotPresent
image.pullSecrets | The kubernetes secret to pull the image from a private registry. | None
service.type | The kubernetes service type to use. | ClusterIP
service.port | The tcp port the service should listen on. | 80
ingress | Any ingress rules to apply. | None
@@ -30,6 +30,10 @@ spec:
serviceAccountName: {{ include "rundeck.serviceAccountName" . }}
securityContext:
fsGroup: 1000
{{- if .Values.image.pullSecrets }}
imagePullSecrets:
- name: {{ .Values.image.pullSecrets }}
{{- end }}
containers:
- name: nginx
image: nginx:stable
-1
View File
@@ -1,4 +1,3 @@
{{- if and .Values.persistence.enabled .Values.persistence.claim.create }}
kind: PersistentVolumeClaim
apiVersion: v1