개인용 이미지 레지스트리가 있고 작동합니다. 이제 이를 사용하고 싶습니다. my distribution.yaml
API 버전: 확장/v1beta1
kind: Deployment
metadata:
name: {{ template "mychart.fullname" . }}
spec:
replicas: {{ .Values.replicaCount }}
template:
metadata:
labels:
app: {{ template "mychart.name" . }}
spec:
containers:
- name: {{ .Chart.Name }}
image: "{{ .Values.image.repository }}/ssh"
imagePullPolicy: {{ .Values.image.pullPolicy }}
ports:
- containerPort: {{ .Values.service.internalPort }}
imagePullSecrets:
- name: "{{ .Values.imageCredentials }}"
및 myvalues.yaml
사본 수: 1
image:
repository: registry.yoy.online
pullPolicy: IfNotPresent
service:
name: ssh
type: NodePort
externalPort: 31000
internalPort: 2222
imageCredentials:
registry: registry.yoy.online
username: tesing
password: tesing
하지만 실패했습니다. 뭔가 오류가 있는 것 같아요.