mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
Add imagePullSecrets feature and update versions in Chart.yaml (#23579)
Signed-off-by: Damian Fiłonowicz <damianomancity@gmail.com>
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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,4 +1,3 @@
|
||||
|
||||
{{- if and .Values.persistence.enabled .Values.persistence.claim.create }}
|
||||
kind: PersistentVolumeClaim
|
||||
apiVersion: v1
|
||||
|
||||
Reference in New Issue
Block a user