Skip to content

Commit ee0b986

Browse files
authored
Merge pull request #128 from aaronschweig/main
feat(podAnnotations): allow for podAnnotations on kcp server deployment
2 parents a4e9759 + 12d4ec3 commit ee0b986

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

charts/kcp/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: kcp
33
description: A prototype of a multi-tenant Kubernetes control plane for workloads on many clusters
44

55
# version information
6-
version: 0.9.3
6+
version: 0.9.4
77
appVersion: "0.26.1"
88

99
# optional metadata

charts/kcp/templates/server-deployment.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,10 @@ spec:
8585
labels:
8686
{{- include "common.labels" . | nindent 8 }}
8787
app.kubernetes.io/component: "server"
88+
annotations:
89+
{{- with .Values.kcp.podAnnotations }}
90+
{{- toYaml . | nindent 8 }}
91+
{{- end }}
8892
spec:
8993
{{- with .Values.kcp.securityContext }}
9094
securityContext:

charts/kcp/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ kcp:
5555
# cpu: 1
5656
memory: 20Gi
5757
volumeClassName: ""
58+
podAnnotations: {}
5859
etcd:
5960
# set this if you are using external etcds. Do not set this to "embedded", it is not supported.
6061
serverAddress: ""

0 commit comments

Comments
 (0)