You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
The definition of local registry in kubecf-config-values.yaml is not working anymore
kube:
registry:
# example registry domainhostname: "myregistry.com"username: ""password: ""organization: "cap"
# helm install kubecf suse/kubecf -f kubecf-config-values.yaml --dry-run
Error: values don't meet the specifications of the schema(s) in the following chart(s):kubecf:- kube: Additional property organization is not allowed- kube: Additional property registry is not allowed
To be able to use local registry, we have to either:
Use registry proxy in docker config or cri-o config
helm fetch suse/cf-operator
tar zxvf cf-operator-6.1.17+0.gec409fd7.tgz
cd cf-operator/
forfin$(grep -lr registry.suse.com);doecho$f; sed -i "s/registry.suse.com/myregistry.com/"$f;donecd ..
helm fetch suse/kubecf
tar zxvf kubecf-2.5.8.tgz
cd kubecf
forfin$(grep -lr registry.suse.com);doecho$f; sed -i "s/registry.suse.com/myregistry.com/"$f;donecd ..
The text was updated successfully, but these errors were encountered:
10.2 Mirror Images to Registry:
https://documentation.suse.com/suse-cap/2.1/single-html/cap-guides/#sec-cap-air-gap-registry
Hi,
The definition of local registry in kubecf-config-values.yaml is not working anymore
To be able to use local registry, we have to either:
Cri-O /etc/containers/registries.conf
Docker /etc/docker/daemon.json
Modify Helm chart
The text was updated successfully, but these errors were encountered: