Update imagePullSecret
This commit is contained in:
parent
9da05bfd37
commit
7abe7f0b22
@ -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 }}"
|
||||
|
||||
@ -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 }}"
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
nameOverride: ""
|
||||
fullnameOverride: ""
|
||||
|
||||
imagePullSecrets: []
|
||||
|
||||
commonLabels: {}
|
||||
commonAnnotations: {}
|
||||
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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 }}"
|
||||
|
||||
@ -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 }}"
|
||||
|
||||
@ -1,5 +1,7 @@
|
||||
# Default values for ipify
|
||||
|
||||
imagePullSecrets: []
|
||||
|
||||
# Backend configuration
|
||||
backend:
|
||||
name: ipify-backend
|
||||
|
||||
@ -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 }}
|
||||
|
||||
@ -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 }}
|
||||
|
||||
@ -1,3 +1,5 @@
|
||||
imagePullSecrets: []
|
||||
|
||||
frontend:
|
||||
image: harbor.dvirlabs.com/my-apps/labmap-frontend
|
||||
tag: latest
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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 }}"
|
||||
|
||||
@ -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 }}"
|
||||
|
||||
@ -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 }}"
|
||||
|
||||
@ -1,3 +1,5 @@
|
||||
imagePullSecrets: []
|
||||
|
||||
frontend:
|
||||
image:
|
||||
repository: harbor.dvirlabs.com/my-apps/navix-front
|
||||
|
||||
@ -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 }}"
|
||||
|
||||
@ -1,5 +1,7 @@
|
||||
replicaCount: 1
|
||||
|
||||
imagePullSecrets: []
|
||||
|
||||
image:
|
||||
repository: harbor.dvirlabs.com/shay/oramap
|
||||
tag: "1"
|
||||
|
||||
@ -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 }}"
|
||||
|
||||
@ -1,3 +1,5 @@
|
||||
imagePullSecrets: []
|
||||
|
||||
backend:
|
||||
image:
|
||||
repository: harbor.dvirlabs.com/my-apps/tunedrop-backend
|
||||
|
||||
@ -2,6 +2,9 @@ nameOverride: ""
|
||||
fullnameOverride: ""
|
||||
commonLabels: {}
|
||||
commonAnnotations: {}
|
||||
imagePullSecrets:
|
||||
- name: harbor-regcred
|
||||
|
||||
backend:
|
||||
image:
|
||||
repository: harbor.dvirlabs.com/my-apps/calink-backend
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
global:
|
||||
namespace: my-apps
|
||||
imagePullSecrets: []
|
||||
imagePullSecrets:
|
||||
- name: harbor-regcred
|
||||
# Backend configuration
|
||||
backend:
|
||||
name: backend
|
||||
|
||||
@ -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:
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
global:
|
||||
namespace: my-apps
|
||||
imagePullSecrets: []
|
||||
imagePullSecrets:
|
||||
- name: harbor-regcred
|
||||
# Backend configuration
|
||||
backend:
|
||||
name: backend
|
||||
|
||||
@ -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
|
||||
|
||||
@ -1,3 +1,6 @@
|
||||
imagePullSecrets:
|
||||
- name: harbor-regcred
|
||||
|
||||
frontend:
|
||||
image: harbor.dvirlabs.com/my-apps/labmap-frontend
|
||||
tag: master-3ad6d53
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
global:
|
||||
namespace: my-apps
|
||||
imagePullSecrets: []
|
||||
imagePullSecrets:
|
||||
- name: harbor-regcred
|
||||
# Backend configuration
|
||||
backend:
|
||||
name: backend
|
||||
|
||||
@ -1,3 +1,6 @@
|
||||
imagePullSecrets:
|
||||
- name: harbor-regcred
|
||||
|
||||
frontend:
|
||||
image:
|
||||
repository: harbor.dvirlabs.com/my-apps/navix-frontend
|
||||
|
||||
@ -1,3 +1,6 @@
|
||||
imagePullSecrets:
|
||||
- name: harbor-regcred
|
||||
|
||||
replicaCount: 1
|
||||
|
||||
image:
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
global:
|
||||
namespace: my-apps
|
||||
imagePullSecrets:
|
||||
- name: harbor-regcred
|
||||
- name: harbor-global-creds
|
||||
# Backend configuration
|
||||
backend:
|
||||
|
||||
@ -1,3 +1,6 @@
|
||||
imagePullSecrets:
|
||||
- name: harbor-regcred
|
||||
|
||||
backend:
|
||||
image:
|
||||
repository: harbor.dvirlabs.com/my-apps/tunedrop-backend
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user