Update imagePullSecret
This commit is contained in:
parent
9da05bfd37
commit
7abe7f0b22
@ -22,6 +22,10 @@ spec:
|
|||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
spec:
|
spec:
|
||||||
|
{{- with .Values.imagePullSecrets }}
|
||||||
|
imagePullSecrets:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
containers:
|
containers:
|
||||||
- name: backend
|
- name: backend
|
||||||
image: "{{ .Values.backend.image.repository }}:{{ .Values.backend.image.tag }}"
|
image: "{{ .Values.backend.image.repository }}:{{ .Values.backend.image.tag }}"
|
||||||
|
|||||||
@ -22,6 +22,10 @@ spec:
|
|||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
spec:
|
spec:
|
||||||
|
{{- with .Values.imagePullSecrets }}
|
||||||
|
imagePullSecrets:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
containers:
|
containers:
|
||||||
- name: frontend
|
- name: frontend
|
||||||
image: "{{ .Values.frontend.image.repository }}:{{ .Values.frontend.image.tag }}"
|
image: "{{ .Values.frontend.image.repository }}:{{ .Values.frontend.image.tag }}"
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
nameOverride: ""
|
nameOverride: ""
|
||||||
fullnameOverride: ""
|
fullnameOverride: ""
|
||||||
|
|
||||||
|
imagePullSecrets: []
|
||||||
|
|
||||||
commonLabels: {}
|
commonLabels: {}
|
||||||
commonAnnotations: {}
|
commonAnnotations: {}
|
||||||
|
|
||||||
|
|||||||
@ -17,6 +17,10 @@ spec:
|
|||||||
app: {{ .Release.Name }}-{{ .Values.backend.name }}
|
app: {{ .Release.Name }}-{{ .Values.backend.name }}
|
||||||
component: backend
|
component: backend
|
||||||
spec:
|
spec:
|
||||||
|
{{- with .Values.global.imagePullSecrets }}
|
||||||
|
imagePullSecrets:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
initContainers:
|
initContainers:
|
||||||
- name: wait-for-postgres
|
- name: wait-for-postgres
|
||||||
image: postgres:16-alpine
|
image: postgres:16-alpine
|
||||||
|
|||||||
@ -17,6 +17,10 @@ spec:
|
|||||||
app: {{ .Release.Name }}-{{ .Values.frontend.name }}
|
app: {{ .Release.Name }}-{{ .Values.frontend.name }}
|
||||||
component: frontend
|
component: frontend
|
||||||
spec:
|
spec:
|
||||||
|
{{- with .Values.global.imagePullSecrets }}
|
||||||
|
imagePullSecrets:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
initContainers:
|
initContainers:
|
||||||
- name: wait-for-backend
|
- name: wait-for-backend
|
||||||
image: busybox:1.35
|
image: busybox:1.35
|
||||||
|
|||||||
@ -17,6 +17,10 @@ spec:
|
|||||||
app: {{ .Values.backend.name }}
|
app: {{ .Values.backend.name }}
|
||||||
component: backend
|
component: backend
|
||||||
spec:
|
spec:
|
||||||
|
{{- with .Values.imagePullSecrets }}
|
||||||
|
imagePullSecrets:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
containers:
|
containers:
|
||||||
- name: backend
|
- name: backend
|
||||||
image: "{{ .Values.backend.image.repository }}:{{ .Values.backend.image.tag }}"
|
image: "{{ .Values.backend.image.repository }}:{{ .Values.backend.image.tag }}"
|
||||||
|
|||||||
@ -17,6 +17,10 @@ spec:
|
|||||||
app: {{ .Values.frontend.name }}
|
app: {{ .Values.frontend.name }}
|
||||||
component: frontend
|
component: frontend
|
||||||
spec:
|
spec:
|
||||||
|
{{- with .Values.imagePullSecrets }}
|
||||||
|
imagePullSecrets:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
containers:
|
containers:
|
||||||
- name: frontend
|
- name: frontend
|
||||||
image: "{{ .Values.frontend.image.repository }}:{{ .Values.frontend.image.tag }}"
|
image: "{{ .Values.frontend.image.repository }}:{{ .Values.frontend.image.tag }}"
|
||||||
|
|||||||
@ -1,5 +1,7 @@
|
|||||||
# Default values for ipify
|
# Default values for ipify
|
||||||
|
|
||||||
|
imagePullSecrets: []
|
||||||
|
|
||||||
# Backend configuration
|
# Backend configuration
|
||||||
backend:
|
backend:
|
||||||
name: ipify-backend
|
name: ipify-backend
|
||||||
|
|||||||
@ -12,6 +12,10 @@ spec:
|
|||||||
labels:
|
labels:
|
||||||
app: labmap-backend
|
app: labmap-backend
|
||||||
spec:
|
spec:
|
||||||
|
{{- with .Values.imagePullSecrets }}
|
||||||
|
imagePullSecrets:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
containers:
|
containers:
|
||||||
- name: backend
|
- name: backend
|
||||||
image: {{ .Values.backend.image }}:{{ .Values.backend.tag }}
|
image: {{ .Values.backend.image }}:{{ .Values.backend.tag }}
|
||||||
|
|||||||
@ -12,6 +12,10 @@ spec:
|
|||||||
labels:
|
labels:
|
||||||
app: labmap-frontend
|
app: labmap-frontend
|
||||||
spec:
|
spec:
|
||||||
|
{{- with .Values.imagePullSecrets }}
|
||||||
|
imagePullSecrets:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
containers:
|
containers:
|
||||||
- name: frontend
|
- name: frontend
|
||||||
image: {{ .Values.frontend.image }}:{{ .Values.frontend.tag }}
|
image: {{ .Values.frontend.image }}:{{ .Values.frontend.tag }}
|
||||||
|
|||||||
@ -1,3 +1,5 @@
|
|||||||
|
imagePullSecrets: []
|
||||||
|
|
||||||
frontend:
|
frontend:
|
||||||
image: harbor.dvirlabs.com/my-apps/labmap-frontend
|
image: harbor.dvirlabs.com/my-apps/labmap-frontend
|
||||||
tag: latest
|
tag: latest
|
||||||
|
|||||||
@ -17,6 +17,10 @@ spec:
|
|||||||
app: {{ .Release.Name }}-{{ .Values.backend.name }}
|
app: {{ .Release.Name }}-{{ .Values.backend.name }}
|
||||||
component: backend
|
component: backend
|
||||||
spec:
|
spec:
|
||||||
|
{{- with .Values.global.imagePullSecrets }}
|
||||||
|
imagePullSecrets:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
initContainers:
|
initContainers:
|
||||||
- name: db-migration
|
- name: db-migration
|
||||||
image: postgres:16-alpine
|
image: postgres:16-alpine
|
||||||
|
|||||||
@ -17,6 +17,10 @@ spec:
|
|||||||
app: {{ .Release.Name }}-{{ .Values.frontend.name }}
|
app: {{ .Release.Name }}-{{ .Values.frontend.name }}
|
||||||
component: frontend
|
component: frontend
|
||||||
spec:
|
spec:
|
||||||
|
{{- with .Values.global.imagePullSecrets }}
|
||||||
|
imagePullSecrets:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
containers:
|
containers:
|
||||||
- name: {{ .Values.frontend.name }}
|
- name: {{ .Values.frontend.name }}
|
||||||
image: "{{ .Values.frontend.image.repository }}:{{ .Values.frontend.image.tag }}"
|
image: "{{ .Values.frontend.image.repository }}:{{ .Values.frontend.image.tag }}"
|
||||||
|
|||||||
@ -12,6 +12,10 @@ spec:
|
|||||||
labels:
|
labels:
|
||||||
app: navix-backend
|
app: navix-backend
|
||||||
spec:
|
spec:
|
||||||
|
{{- with .Values.imagePullSecrets }}
|
||||||
|
imagePullSecrets:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
containers:
|
containers:
|
||||||
- name: backend
|
- name: backend
|
||||||
image: "{{ .Values.backend.image.repository }}:{{ .Values.backend.tag }}"
|
image: "{{ .Values.backend.image.repository }}:{{ .Values.backend.tag }}"
|
||||||
|
|||||||
@ -12,6 +12,10 @@ spec:
|
|||||||
labels:
|
labels:
|
||||||
app: navix-frontend
|
app: navix-frontend
|
||||||
spec:
|
spec:
|
||||||
|
{{- with .Values.imagePullSecrets }}
|
||||||
|
imagePullSecrets:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
containers:
|
containers:
|
||||||
- name: frontend
|
- name: frontend
|
||||||
image: "{{ .Values.frontend.image.repository }}:{{ .Values.frontend.tag }}"
|
image: "{{ .Values.frontend.image.repository }}:{{ .Values.frontend.tag }}"
|
||||||
|
|||||||
@ -1,3 +1,5 @@
|
|||||||
|
imagePullSecrets: []
|
||||||
|
|
||||||
frontend:
|
frontend:
|
||||||
image:
|
image:
|
||||||
repository: harbor.dvirlabs.com/my-apps/navix-front
|
repository: harbor.dvirlabs.com/my-apps/navix-front
|
||||||
|
|||||||
@ -19,6 +19,10 @@ spec:
|
|||||||
app: {{ include "oramap.name" . }}
|
app: {{ include "oramap.name" . }}
|
||||||
release: {{ .Release.Name }}
|
release: {{ .Release.Name }}
|
||||||
spec:
|
spec:
|
||||||
|
{{- with .Values.imagePullSecrets }}
|
||||||
|
imagePullSecrets:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
containers:
|
containers:
|
||||||
- name: {{ .Chart.Name }}
|
- name: {{ .Chart.Name }}
|
||||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
||||||
|
|||||||
@ -1,5 +1,7 @@
|
|||||||
replicaCount: 1
|
replicaCount: 1
|
||||||
|
|
||||||
|
imagePullSecrets: []
|
||||||
|
|
||||||
image:
|
image:
|
||||||
repository: harbor.dvirlabs.com/shay/oramap
|
repository: harbor.dvirlabs.com/shay/oramap
|
||||||
tag: "1"
|
tag: "1"
|
||||||
|
|||||||
@ -12,6 +12,10 @@ spec:
|
|||||||
labels:
|
labels:
|
||||||
app: tunedrop
|
app: tunedrop
|
||||||
spec:
|
spec:
|
||||||
|
{{- with .Values.imagePullSecrets }}
|
||||||
|
imagePullSecrets:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
containers:
|
containers:
|
||||||
- name: tunedrop
|
- name: tunedrop
|
||||||
image: "{{ .Values.backend.image.repository }}:{{ .Values.backend.tag }}"
|
image: "{{ .Values.backend.image.repository }}:{{ .Values.backend.tag }}"
|
||||||
|
|||||||
@ -1,3 +1,5 @@
|
|||||||
|
imagePullSecrets: []
|
||||||
|
|
||||||
backend:
|
backend:
|
||||||
image:
|
image:
|
||||||
repository: harbor.dvirlabs.com/my-apps/tunedrop-backend
|
repository: harbor.dvirlabs.com/my-apps/tunedrop-backend
|
||||||
|
|||||||
@ -2,6 +2,9 @@ nameOverride: ""
|
|||||||
fullnameOverride: ""
|
fullnameOverride: ""
|
||||||
commonLabels: {}
|
commonLabels: {}
|
||||||
commonAnnotations: {}
|
commonAnnotations: {}
|
||||||
|
imagePullSecrets:
|
||||||
|
- name: harbor-regcred
|
||||||
|
|
||||||
backend:
|
backend:
|
||||||
image:
|
image:
|
||||||
repository: harbor.dvirlabs.com/my-apps/calink-backend
|
repository: harbor.dvirlabs.com/my-apps/calink-backend
|
||||||
|
|||||||
@ -1,6 +1,7 @@
|
|||||||
global:
|
global:
|
||||||
namespace: my-apps
|
namespace: my-apps
|
||||||
imagePullSecrets: []
|
imagePullSecrets:
|
||||||
|
- name: harbor-regcred
|
||||||
# Backend configuration
|
# Backend configuration
|
||||||
backend:
|
backend:
|
||||||
name: backend
|
name: backend
|
||||||
|
|||||||
@ -3,7 +3,8 @@ image:
|
|||||||
repository: harbor.dvirlabs.com/my-apps/dvirlabs-landing
|
repository: harbor.dvirlabs.com/my-apps/dvirlabs-landing
|
||||||
tag: "master-2fb2b72"
|
tag: "master-2fb2b72"
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
imagePullSecrets: []
|
imagePullSecrets:
|
||||||
|
- name: harbor-regcred
|
||||||
nameOverride: ""
|
nameOverride: ""
|
||||||
fullnameOverride: ""
|
fullnameOverride: ""
|
||||||
service:
|
service:
|
||||||
|
|||||||
@ -1,6 +1,7 @@
|
|||||||
global:
|
global:
|
||||||
namespace: my-apps
|
namespace: my-apps
|
||||||
imagePullSecrets: []
|
imagePullSecrets:
|
||||||
|
- name: harbor-regcred
|
||||||
# Backend configuration
|
# Backend configuration
|
||||||
backend:
|
backend:
|
||||||
name: backend
|
name: backend
|
||||||
|
|||||||
@ -6,6 +6,9 @@ app:
|
|||||||
version: "1.0.0"
|
version: "1.0.0"
|
||||||
description: "IP Subnet Calculator with React + Vite frontend and FastAPI backend"
|
description: "IP Subnet Calculator with React + Vite frontend and FastAPI backend"
|
||||||
|
|
||||||
|
imagePullSecrets:
|
||||||
|
- name: harbor-regcred
|
||||||
|
|
||||||
# Backend configuration
|
# Backend configuration
|
||||||
backend:
|
backend:
|
||||||
name: ipify-backend
|
name: ipify-backend
|
||||||
|
|||||||
@ -1,3 +1,6 @@
|
|||||||
|
imagePullSecrets:
|
||||||
|
- name: harbor-regcred
|
||||||
|
|
||||||
frontend:
|
frontend:
|
||||||
image: harbor.dvirlabs.com/my-apps/labmap-frontend
|
image: harbor.dvirlabs.com/my-apps/labmap-frontend
|
||||||
tag: master-3ad6d53
|
tag: master-3ad6d53
|
||||||
|
|||||||
@ -1,6 +1,7 @@
|
|||||||
global:
|
global:
|
||||||
namespace: my-apps
|
namespace: my-apps
|
||||||
imagePullSecrets: []
|
imagePullSecrets:
|
||||||
|
- name: harbor-regcred
|
||||||
# Backend configuration
|
# Backend configuration
|
||||||
backend:
|
backend:
|
||||||
name: backend
|
name: backend
|
||||||
|
|||||||
@ -1,3 +1,6 @@
|
|||||||
|
imagePullSecrets:
|
||||||
|
- name: harbor-regcred
|
||||||
|
|
||||||
frontend:
|
frontend:
|
||||||
image:
|
image:
|
||||||
repository: harbor.dvirlabs.com/my-apps/navix-frontend
|
repository: harbor.dvirlabs.com/my-apps/navix-frontend
|
||||||
|
|||||||
@ -1,3 +1,6 @@
|
|||||||
|
imagePullSecrets:
|
||||||
|
- name: harbor-regcred
|
||||||
|
|
||||||
replicaCount: 1
|
replicaCount: 1
|
||||||
|
|
||||||
image:
|
image:
|
||||||
|
|||||||
@ -1,6 +1,7 @@
|
|||||||
global:
|
global:
|
||||||
namespace: my-apps
|
namespace: my-apps
|
||||||
imagePullSecrets:
|
imagePullSecrets:
|
||||||
|
- name: harbor-regcred
|
||||||
- name: harbor-global-creds
|
- name: harbor-global-creds
|
||||||
# Backend configuration
|
# Backend configuration
|
||||||
backend:
|
backend:
|
||||||
|
|||||||
@ -1,3 +1,6 @@
|
|||||||
|
imagePullSecrets:
|
||||||
|
- name: harbor-regcred
|
||||||
|
|
||||||
backend:
|
backend:
|
||||||
image:
|
image:
|
||||||
repository: harbor.dvirlabs.com/my-apps/tunedrop-backend
|
repository: harbor.dvirlabs.com/my-apps/tunedrop-backend
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user