diff --git a/charts/portal/templates/deployment-backend-administration.yaml b/charts/portal/templates/deployment-backend-administration.yaml index ea0055de8..5a3c7113c 100644 --- a/charts/portal/templates/deployment-backend-administration.yaml +++ b/charts/portal/templates/deployment-backend-administration.yaml @@ -38,6 +38,10 @@ spec: app: {{ include "portal.fullname" . }}-{{ .Values.backend.administration.name }} {{- include "portal.selectorLabels" . | nindent 8 }} spec: + {{- with .Values.backend.administration.image.pullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} containers: - name: {{ include "portal.fullname" . }}-{{ .Values.backend.administration.name }} securityContext: diff --git a/charts/portal/templates/deployment-backend-appmarketplace.yaml b/charts/portal/templates/deployment-backend-appmarketplace.yaml index 1316c6f59..cb9180e0a 100644 --- a/charts/portal/templates/deployment-backend-appmarketplace.yaml +++ b/charts/portal/templates/deployment-backend-appmarketplace.yaml @@ -38,6 +38,10 @@ spec: app: {{ include "portal.fullname" . }}-{{ .Values.backend.appmarketplace.name }} {{- include "portal.selectorLabels" . | nindent 8 }} spec: + {{- with .Values.backend.appmarketplace.image.pullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} containers: - name: {{ include "portal.fullname" . }}-{{ .Values.backend.appmarketplace.name }} securityContext: diff --git a/charts/portal/templates/deployment-backend-notification.yaml b/charts/portal/templates/deployment-backend-notification.yaml index 0d70e6ecc..6ef30721d 100644 --- a/charts/portal/templates/deployment-backend-notification.yaml +++ b/charts/portal/templates/deployment-backend-notification.yaml @@ -38,6 +38,10 @@ spec: app: {{ include "portal.fullname" . }}-{{ .Values.backend.notification.name }} {{- include "portal.selectorLabels" . | nindent 8 }} spec: + {{- with .Values.backend.notification.image.pullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} containers: - name: {{ include "portal.fullname" . }}-{{ .Values.backend.notification.name }} securityContext: diff --git a/charts/portal/templates/deployment-backend-registration.yaml b/charts/portal/templates/deployment-backend-registration.yaml index 51b5eeb9b..3450712c4 100644 --- a/charts/portal/templates/deployment-backend-registration.yaml +++ b/charts/portal/templates/deployment-backend-registration.yaml @@ -38,6 +38,10 @@ spec: app: {{ include "portal.fullname" . }}-{{ .Values.backend.registration.name }} {{- include "portal.selectorLabels" . | nindent 8 }} spec: + {{- with .Values.backend.registration.image.pullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} containers: - name: {{ include "portal.fullname" . }}-{{ .Values.backend.registration.name }} securityContext: diff --git a/charts/portal/templates/deployment-backend-services.yaml b/charts/portal/templates/deployment-backend-services.yaml index 283013a2a..add08d127 100644 --- a/charts/portal/templates/deployment-backend-services.yaml +++ b/charts/portal/templates/deployment-backend-services.yaml @@ -38,6 +38,10 @@ spec: app: {{ include "portal.fullname" . }}-{{ .Values.backend.services.name }} {{- include "portal.selectorLabels" . | nindent 8 }} spec: + {{- with .Values.backend.services.image.pullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} containers: - name: {{ include "portal.fullname" . }}-{{ .Values.backend.services.name }} securityContext: diff --git a/charts/portal/templates/deployment-frontend-assets.yaml b/charts/portal/templates/deployment-frontend-assets.yaml index 02700a16f..34810a43c 100644 --- a/charts/portal/templates/deployment-frontend-assets.yaml +++ b/charts/portal/templates/deployment-frontend-assets.yaml @@ -38,6 +38,10 @@ spec: app: {{ include "portal.fullname" . }}-{{ .Values.frontend.assets.name }} {{- include "portal.selectorLabels" . | nindent 8 }} spec: + {{- with .Values.frontend.assets.image.pullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} containers: - name: {{ include "portal.fullname" . }}-{{ .Values.frontend.assets.name }} securityContext: diff --git a/charts/portal/templates/deployment-frontend-portal.yaml b/charts/portal/templates/deployment-frontend-portal.yaml index 7d3219baa..579ebc25d 100644 --- a/charts/portal/templates/deployment-frontend-portal.yaml +++ b/charts/portal/templates/deployment-frontend-portal.yaml @@ -38,6 +38,10 @@ spec: app: {{ include "portal.fullname" . }}-{{ .Values.frontend.portal.name }} {{- include "portal.selectorLabels" . | nindent 8 }} spec: + {{- with .Values.frontend.portal.image.pullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} containers: - name: {{ include "portal.fullname" . }}-{{ .Values.frontend.portal.name }} securityContext: diff --git a/charts/portal/templates/deployment-frontend-registration.yaml b/charts/portal/templates/deployment-frontend-registration.yaml index 565a08790..d92b15fb2 100644 --- a/charts/portal/templates/deployment-frontend-registration.yaml +++ b/charts/portal/templates/deployment-frontend-registration.yaml @@ -38,6 +38,10 @@ spec: app: {{ include "portal.fullname" . }}-{{ .Values.frontend.registration.name }} {{- include "portal.selectorLabels" . | nindent 8 }} spec: + {{- with .Values.frontend.registration.image.pullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} containers: - name: {{ include "portal.fullname" . }}-{{ .Values.frontend.registration.name }} securityContext: diff --git a/charts/portal/values.yaml b/charts/portal/values.yaml index 453a6a920..21c63a6eb 100644 --- a/charts/portal/values.yaml +++ b/charts/portal/values.yaml @@ -128,6 +128,8 @@ frontend: name: "docker.io/tractusx/portal-frontend" portaltag: 37cd674aa1324f0fbd9c7662b5e43fde89e1a748 pullPolicy: "IfNotPresent" + # -- Pull secrets for private docker registry + pullSecrets: [] # -- We recommend to review the default resource limits as this should a conscious choice. resources: requests: @@ -143,6 +145,8 @@ frontend: name: "docker.io/tractusx/portal-frontend-registration" registrationtag: 064a96674c239433e85d2599b17a95c3434e9bb9 pullPolicy: "IfNotPresent" + # -- Pull secrets for private docker registry + pullSecrets: [] # -- We recommend to review the default resource limits as this should a conscious choice. resources: requests: @@ -157,6 +161,8 @@ frontend: name: "docker.io/tractusx/portal-assets" assetstag: 587cfb232860b5dc221aefc60758dd81c00f53bb pullPolicy: "IfNotPresent" + # -- Pull secrets for private docker registry + pullSecrets: [] # -- We recommend to review the default resource limits as this should a conscious choice. resources: requests: @@ -293,6 +299,8 @@ backend: name: "docker.io/tractusx/portal-registration-service" registrationservicetag: 294eea9b508022239c633dc84022116b1ba3694d pullPolicy: "IfNotPresent" + # -- Pull secrets for private docker registry + pullSecrets: [] # -- We recommend to review the default resource limits as this should a conscious choice. resources: requests: @@ -342,6 +350,8 @@ backend: name: "docker.io/tractusx/portal-administration-service" administrationservicetag: 294eea9b508022239c633dc84022116b1ba3694d pullPolicy: "IfNotPresent" + # -- Pull secrets for private docker registry + pullSecrets: [] # -- We recommend to review the default resource limits as this should a conscious choice. resources: requests: @@ -460,6 +470,8 @@ backend: name: "docker.io/tractusx/portal-marketplace-app-service" appmarketplaceservicetag: 294eea9b508022239c633dc84022116b1ba3694d pullPolicy: "IfNotPresent" + # -- Pull secrets for private docker registry + pullSecrets: [] # -- We recommend to review the default resource limits as this should a conscious choice. resources: requests: @@ -634,6 +646,8 @@ backend: name: "docker.io/tractusx/portal-notification-service" notificationservicetag: 294eea9b508022239c633dc84022116b1ba3694d pullPolicy: "IfNotPresent" + # -- Pull secrets for private docker registry + pullSecrets: [] # -- We recommend to review the default resource limits as this should a conscious choice. resources: requests: @@ -661,6 +675,8 @@ backend: name: "docker.io/tractusx/portal-services-service" servicesservicetag: 294eea9b508022239c633dc84022116b1ba3694d pullPolicy: "IfNotPresent" + # -- Pull secrets for private docker registry + pullSecrets: [] # -- We recommend to review the default resource limits as this should a conscious choice. resources: requests: