Przeglądaj źródła

Merge pull request #28 from riskfocus/feature/sa-annotations

feat: serviceAccount annotations
Viacheslav Kropotko 4 lat temu
rodzic
commit
a60dfabec0
2 zmienionych plików z 10 dodań i 0 usunięć
  1. 8 0
      flink/templates/serviceaccounts.yaml
  2. 2 0
      flink/values.yaml

+ 8 - 0
flink/templates/serviceaccounts.yaml

@@ -3,6 +3,10 @@ apiVersion: v1
 kind: ServiceAccount
 metadata:
   name: {{ include "jobmanager.serviceAccount" . }}
+{{- if .Values.jobmanager.serviceAccount.annotations }}
+  annotations:
+{{ tpl (toYaml .Values.jobmanager.serviceAccount.annotations) . | indent 4 }}
+{{- end }}
   labels:
 {{ include "flink.labels" . | indent 4 }}
 {{- end }}
@@ -13,6 +17,10 @@ apiVersion: v1
 kind: ServiceAccount
 metadata:
   name: {{ include "taskmanager.serviceAccount" . }}
+{{- if .Values.taskmanager.serviceAccount.annotations }}
+  annotations:
+{{ tpl (toYaml .Values.taskmanager.serviceAccount.annotations) . | indent 4 }}
+{{- end }}
   labels:
 {{ include "flink.labels" . | indent 4 }}
 {{- end }}

+ 2 - 0
flink/values.yaml

@@ -206,6 +206,7 @@ jobmanager:
     # The name of the ServiceAccount to use.
     # If not set and create is true, a name is generated using the fullname template
     name:
+    annotations: {}
   #livenessProbe will conduct checks for rpc port as tcpSocket probe
   livenessProbe:
     initialDelaySeconds: 10
@@ -273,6 +274,7 @@ taskmanager:
     # The name of the ServiceAccount to use.
     # If not set and create is true, a name is generated using the fullname template
     name:
+    annotations: {}
   #livenessProbe will conduct checks for rpc port as tcpSocket probe
   livenessProbe:
     initialDelaySeconds: 30