Update imagePullSecret

This commit is contained in:
dvirlabs 2026-03-24 07:58:18 +02:00
parent 9da05bfd37
commit 7abe7f0b22
31 changed files with 95 additions and 4 deletions

View File

@ -22,6 +22,10 @@ spec:
{{- toYaml . | nindent 8 }}
{{- end }}
spec:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- name: backend
image: "{{ .Values.backend.image.repository }}:{{ .Values.backend.image.tag }}"

View File

@ -22,6 +22,10 @@ spec:
{{- toYaml . | nindent 8 }}
{{- end }}
spec:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- name: frontend
image: "{{ .Values.frontend.image.repository }}:{{ .Values.frontend.image.tag }}"

View File

@ -1,6 +1,8 @@
nameOverride: ""
fullnameOverride: ""
imagePullSecrets: []
commonLabels: {}
commonAnnotations: {}

View File

@ -17,6 +17,10 @@ spec:
app: {{ .Release.Name }}-{{ .Values.backend.name }}
component: backend
spec:
{{- with .Values.global.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
initContainers:
- name: wait-for-postgres
image: postgres:16-alpine

View File

@ -17,6 +17,10 @@ spec:
app: {{ .Release.Name }}-{{ .Values.frontend.name }}
component: frontend
spec:
{{- with .Values.global.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
initContainers:
- name: wait-for-backend
image: busybox:1.35

View File

@ -17,6 +17,10 @@ spec:
app: {{ .Values.backend.name }}
component: backend
spec:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- name: backend
image: "{{ .Values.backend.image.repository }}:{{ .Values.backend.image.tag }}"

View File

@ -17,6 +17,10 @@ spec:
app: {{ .Values.frontend.name }}
component: frontend
spec:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- name: frontend
image: "{{ .Values.frontend.image.repository }}:{{ .Values.frontend.image.tag }}"

View File

@ -1,5 +1,7 @@
# Default values for ipify
imagePullSecrets: []
# Backend configuration
backend:
name: ipify-backend

View File

@ -12,6 +12,10 @@ spec:
labels:
app: labmap-backend
spec:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- name: backend
image: {{ .Values.backend.image }}:{{ .Values.backend.tag }}

View File

@ -12,6 +12,10 @@ spec:
labels:
app: labmap-frontend
spec:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- name: frontend
image: {{ .Values.frontend.image }}:{{ .Values.frontend.tag }}

View File

@ -1,3 +1,5 @@
imagePullSecrets: []
frontend:
image: harbor.dvirlabs.com/my-apps/labmap-frontend
tag: latest

View File

@ -17,6 +17,10 @@ spec:
app: {{ .Release.Name }}-{{ .Values.backend.name }}
component: backend
spec:
{{- with .Values.global.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
initContainers:
- name: db-migration
image: postgres:16-alpine

View File

@ -17,6 +17,10 @@ spec:
app: {{ .Release.Name }}-{{ .Values.frontend.name }}
component: frontend
spec:
{{- with .Values.global.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- name: {{ .Values.frontend.name }}
image: "{{ .Values.frontend.image.repository }}:{{ .Values.frontend.image.tag }}"

View File

@ -12,6 +12,10 @@ spec:
labels:
app: navix-backend
spec:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- name: backend
image: "{{ .Values.backend.image.repository }}:{{ .Values.backend.tag }}"

View File

@ -12,6 +12,10 @@ spec:
labels:
app: navix-frontend
spec:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- name: frontend
image: "{{ .Values.frontend.image.repository }}:{{ .Values.frontend.tag }}"

View File

@ -1,3 +1,5 @@
imagePullSecrets: []
frontend:
image:
repository: harbor.dvirlabs.com/my-apps/navix-front

View File

@ -19,6 +19,10 @@ spec:
app: {{ include "oramap.name" . }}
release: {{ .Release.Name }}
spec:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- name: {{ .Chart.Name }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"

View File

@ -1,5 +1,7 @@
replicaCount: 1
imagePullSecrets: []
image:
repository: harbor.dvirlabs.com/shay/oramap
tag: "1"

View File

@ -12,6 +12,10 @@ spec:
labels:
app: tunedrop
spec:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- name: tunedrop
image: "{{ .Values.backend.image.repository }}:{{ .Values.backend.tag }}"

View File

@ -1,3 +1,5 @@
imagePullSecrets: []
backend:
image:
repository: harbor.dvirlabs.com/my-apps/tunedrop-backend

View File

@ -2,6 +2,9 @@ nameOverride: ""
fullnameOverride: ""
commonLabels: {}
commonAnnotations: {}
imagePullSecrets:
- name: harbor-regcred
backend:
image:
repository: harbor.dvirlabs.com/my-apps/calink-backend

View File

@ -1,6 +1,7 @@
global:
namespace: my-apps
imagePullSecrets: []
imagePullSecrets:
- name: harbor-regcred
# Backend configuration
backend:
name: backend

View File

@ -3,7 +3,8 @@ image:
repository: harbor.dvirlabs.com/my-apps/dvirlabs-landing
tag: "master-2fb2b72"
pullPolicy: IfNotPresent
imagePullSecrets: []
imagePullSecrets:
- name: harbor-regcred
nameOverride: ""
fullnameOverride: ""
service:

View File

@ -1,6 +1,7 @@
global:
namespace: my-apps
imagePullSecrets: []
imagePullSecrets:
- name: harbor-regcred
# Backend configuration
backend:
name: backend

View File

@ -6,6 +6,9 @@ app:
version: "1.0.0"
description: "IP Subnet Calculator with React + Vite frontend and FastAPI backend"
imagePullSecrets:
- name: harbor-regcred
# Backend configuration
backend:
name: ipify-backend

View File

@ -1,3 +1,6 @@
imagePullSecrets:
- name: harbor-regcred
frontend:
image: harbor.dvirlabs.com/my-apps/labmap-frontend
tag: master-3ad6d53

View File

@ -1,6 +1,7 @@
global:
namespace: my-apps
imagePullSecrets: []
imagePullSecrets:
- name: harbor-regcred
# Backend configuration
backend:
name: backend

View File

@ -1,3 +1,6 @@
imagePullSecrets:
- name: harbor-regcred
frontend:
image:
repository: harbor.dvirlabs.com/my-apps/navix-frontend

View File

@ -1,3 +1,6 @@
imagePullSecrets:
- name: harbor-regcred
replicaCount: 1
image:

View File

@ -1,6 +1,7 @@
global:
namespace: my-apps
imagePullSecrets:
- name: harbor-regcred
- name: harbor-global-creds
# Backend configuration
backend:

View File

@ -1,3 +1,6 @@
imagePullSecrets:
- name: harbor-regcred
backend:
image:
repository: harbor.dvirlabs.com/my-apps/tunedrop-backend