@<1562973095227035648:profile|ThoughtfulOctopus83> I think you can simply include the registry name as part of the docker image name
I think so - @<1523701827080556544:profile|JuicyFox94> ?
Yes, Just want to know where to provide private registry name when deploying this helm chart for clearML server as well as for its dependent chart like elastic search , mango DB.
@<1523701087100473344:profile|SuccessfulKoala55> Do you think below YML is okay “apiserver:
image:
registry: " harbor.example.com/projectname "
repository: "allegroai/clearml"
pullPolicy: IfNotPresent
tag: "1.10.0-357"
service:
type: ClusterIP
ingress:
enabled: true
hostName: " api.clearml.example.com "
fileserver:
image:
registry: " harbor.example.com/projectname "
repository: "allegroai/clearml"
pullPolicy: IfNotPresent
tag: "1.10.0-357"
service:
type: ClusterIP
ingress:
enabled: true
hostName: " files.clearml.example.com "
webserver:
image:
registry: " harbor.example.com/projectname "
repository: "allegroai/clearml"
pullPolicy: IfNotPresent
tag: "1.10.0-357"
service:
type: ClusterIP
ingress:
enabled: true
hostName: " app.clearml.example.com "
redis:
master:
name: "{{ .Release.Name }}-redis"
image:
registry: " harbor.example.com/projectname "
## repository: bitnami/redis
## tag: 7.0.9-debian-11-r1
persistence:
enabled: true
accessModes:
- ReadWriteOnce size: 5Gi
## If undefined (the default) or set to null, no storageClassName spec is set, choosing the default provisioner
storageClass: null
slave:
image:
registry: "harbor.e xample.com/projectname"
## repository: bitnami/redis
## tag: 7.0.9-debian-11-r1
persistence:
enabled: true
accessModes: - ReadWriteOnce size: 5Gi
## If undefined (the default) or set to null, no storageClassName spec is set, choosing the default provisioner
storageClass: null
architecture: replication
mongodb:
image:
registry: "harbor.example.c om/projectname"
## reposit ory: bitnami/mongodb
## tag: 5.0.10-debian-11-r3
enabled: true
architecture: replicaset
replicaCount: 3
arbiter:
enabled: false
pdb:
create: true
podAntiAffinityPreset: soft
elasticsearch:
replicas: 3
it should be ok, for dependency charts (mongodb/elastic/redis) you need to check values by the owner (link is in valus.yaml sections)
Hi @<1562973095227035648:profile|ThoughtfulOctopus83> , I think this is what you are looking for
None