diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2022-03-02 13:26:45 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2022-03-02 13:26:45 +0000 |
commit | 313a088094582dbcee81eb2d1d1a9cd1e7fdaffc (patch) | |
tree | 2e8f29e8c33ecb70d5aecc2e0fc0bba189a9755d /kubernetes/portal/components/portal-widget | |
parent | b682891a41613e6fc6bc6730733aa9a1fee83a7e (diff) | |
parent | 31234fc165623b709e281882e2d2982d80d596e6 (diff) |
Merge "[PORTAL] Update chart with service account"
Diffstat (limited to 'kubernetes/portal/components/portal-widget')
3 files changed, 10 insertions, 0 deletions
diff --git a/kubernetes/portal/components/portal-widget/Chart.yaml b/kubernetes/portal/components/portal-widget/Chart.yaml index 283009bfa0..03b9344622 100644 --- a/kubernetes/portal/components/portal-widget/Chart.yaml +++ b/kubernetes/portal/components/portal-widget/Chart.yaml @@ -27,3 +27,6 @@ dependencies: - name: repositoryGenerator version: ~10.x-0 repository: '@local' + - name: serviceAccount + version: ~10.x-0 + repository: '@local' diff --git a/kubernetes/portal/components/portal-widget/templates/deployment.yaml b/kubernetes/portal/components/portal-widget/templates/deployment.yaml index 246257651a..e9ecece41e 100644 --- a/kubernetes/portal/components/portal-widget/templates/deployment.yaml +++ b/kubernetes/portal/components/portal-widget/templates/deployment.yaml @@ -125,6 +125,7 @@ spec: affinity: {{ toYaml .Values.affinity | indent 10 }} {{- end }} + serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}} volumes: - name: localtime hostPath: diff --git a/kubernetes/portal/components/portal-widget/values.yaml b/kubernetes/portal/components/portal-widget/values.yaml index f86ff85f75..dfa51d8c7b 100644 --- a/kubernetes/portal/components/portal-widget/values.yaml +++ b/kubernetes/portal/components/portal-widget/values.yaml @@ -124,3 +124,9 @@ resources: cpu: 1 memory: 4Gi unlimited: {} + +#Pods Service Account +serviceAccount: + nameOverride: portal-widget + roles: + - read
\ No newline at end of file |