-
Edit
values.yaml
. It is important to changehost_name
to the URL you want the application to respond to. -
Install the Helm chart. Run this from the
deployment
folder:
helm install trs-filer . -n namespace
namespace
is the name of the namespace where the cluster should be installed.
trs-filer
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 trs-filer, changetrs_filer.image
. -
Upgrade the Helm chart. Run this from the
deployment
folder:
helm upgrade trs-filer . -n namespace
namespace
is the name of the namespace where the cluster was installed.
trs-filer
is the name given when installing. In order to see the correct name, do a helm ls -n namespace
.