File tree 4 files changed +10
-1
lines changed
4 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
2
description : Host your own Helm Chart Repository
3
3
name : chartmuseum
4
- version : 3.7.1
4
+ version : 3.8.0
5
5
appVersion : 0.14.0
6
6
home : https://github.com/helm/chartmuseum
7
7
icon : https://raw.githubusercontent.com/chartmuseum/charts/main/logo.jpg
Original file line number Diff line number Diff line change @@ -203,6 +203,7 @@ their default values. See values.yaml for all available options.
203
203
| ` deployment.extraVolumes ` | Additional volumes for deployment | ` [] ` |
204
204
| ` deployment.extraVolumeMounts ` | Additional volumes to mount in container for deployment | ` [] ` |
205
205
| ` podAnnotations ` | Annotations for pods | ` {} ` |
206
+ | ` podLabels ` | Labels for pods | ` {} ` |
206
207
| ` ingress.enabled ` | Enable ingress controller resource | ` false ` |
207
208
| ` ingress.pathType ` | Ingress pathType for Kubernetes 1.18 and above | ` ImplementationSpecific ` |
208
209
| ` ingress.annotations ` | Ingress annotations | ` {} ` |
Original file line number Diff line number Diff line change 27
27
{{- end }}
28
28
labels :
29
29
{{- include "chartmuseum.selectorLabels" . | nindent 8 }}
30
+ {{- if .Values.podLabels }}
31
+ {{- toYaml .Values.podLabels | nindent 8 }}
32
+ {{- end }}
30
33
spec :
31
34
{{- if .Values.priorityClassName }}
32
35
priorityClassName : " {{ .Values.priorityClassName }}"
Original file line number Diff line number Diff line change @@ -139,6 +139,11 @@ deployment:
139
139
podAnnotations : {}
140
140
# iam.amazonaws.com/role: role-arn
141
141
142
+ # # Pod labels
143
+ # # ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
144
+ podLabels : {}
145
+ # name: value
146
+
142
147
service :
143
148
servicename :
144
149
type : ClusterIP
You can’t perform that action at this time.
0 commit comments