Skip to content

Commit 024561b

Browse files
committed
chore(helm): annotations
1 parent 080b97e commit 024561b

3 files changed

Lines changed: 9 additions & 0 deletions

File tree

install/kubernetes/github-actions-cache-server/templates/deployment.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@ spec:
7070
{{- with .Values.env }}
7171
{{- toYaml . | nindent 12 }}
7272
{{- end }}
73+
{{- with .Values.envFrom }}
74+
envFrom: {{ toYaml . | nindent 12 }}
75+
{{- end }}
7376
volumes:
7477
- name: tmp
7578
{{- toYaml .Values.tmpVolume | nindent 10 }}

install/kubernetes/github-actions-cache-server/templates/service.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ metadata:
44
name: {{ include "github-actions-cache-server.fullname" . }}
55
labels:
66
{{- include "github-actions-cache-server.labels" . | nindent 4 }}
7+
{{- with .Values.service.annotations }}
8+
annotations:
9+
{{- toYaml . | nindent 4 }}
10+
{{- end }}
711
spec:
812
type: {{ .Values.service.type }}
913
ports:

install/kubernetes/github-actions-cache-server/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ securityContext:
4545
service:
4646
type: ClusterIP
4747
port: 80
48+
annotations: {}
4849

4950
ingress:
5051
enabled: false
@@ -128,6 +129,7 @@ apiBaseUrl: ''
128129
env:
129130
- name: DEBUG
130131
value: 'false'
132+
envFrom: []
131133

132134
topologySpreadConstraints: []
133135
# - topologyKey: topology.kubernetes.io/zone

0 commit comments

Comments
 (0)