Edit values.yaml. It is important to change host_name to the URL you want the application to respond to.
Install the Helm chart. Run this from the deployment folder:
helm install cloud-registry . -n namespace
namespace is the name of the namespace where the cluster should be installed.
cloud-registry could be any name, it will be referenced later for upgrading or uninstalling.
If you need to change any parameter of the deployment, the procedure is similar to installing:
Edit values.yaml with the new configuration you want to apply. For example, if you want to
change the image of cloud-registry, change cloud_registry.image.
Upgrade the Helm chart. Run this from the deployment folder:
helm upgrade cloud-registry . -n namespace
namespace is the name of the namespace where the cluster was installed.
cloud-registry is the name given when installing. In order to see the correct name, do a helm ls
-n namespace.