J release changes
[ric-plt/ric-dep.git] / helm / infrastructure / subcharts / kong / templates / secret-sa-token.yaml
diff --git a/helm/infrastructure/subcharts/kong/templates/secret-sa-token.yaml b/helm/infrastructure/subcharts/kong/templates/secret-sa-token.yaml
new file mode 100644 (file)
index 0000000..fe8a67d
--- /dev/null
@@ -0,0 +1,14 @@
+{{- /* Due to GKE versions (e.g. v1.23.15-gke.1900) we need to handle pre-release part of the version as well.
+See the related documentation of semver module that Helm depends on for semverCompare:
+https://github.com/Masterminds/semver#working-with-prerelease-versions
+Related Helm issue: https://github.com/helm/helm/issues/3810 */}}
+{{- if and (or .Values.deployment.serviceAccount.create .Values.deployment.serviceAccount.name) (semverCompare "<1.20.0-0" .Capabilities.KubeVersion.Version) }}
+apiVersion: v1
+kind: Secret
+metadata:
+  name: {{ template "kong.serviceAccountTokenName" . }} 
+  namespace: {{ template "kong.namespace" . }}
+  annotations:
+    kubernetes.io/service-account.name: {{ template "kong.serviceAccountName" . }}
+type: kubernetes.io/service-account-token
+{{- end }}