Helm setup

The first step is to add the Keyless helm repository to your helm repository list with the following command:

helm repo add keyless https://example.com (the actual FQDN will be shared upon request)

The charts can then be listed:

helm search repo keyless
Helm search repo
Helm search repo

The list of needed values for each chart can be obtained by using the helm show values command:

helm show values keyless/circuit-storage
Helm show values
Helm show values

The reference values.yaml are to be saved and configured to the specific installation needs. Once the configuration is performed it can be applied by issuing:

helm upgrade --install <release-name (for example circuit-storage)> keyless/circuit-storage --atomic --wait

To allow container images to be pulled from our quay.io repository the creation of a registry secret is needed. This secret will contain the provided credentials in the format specified at the following link:

https://kubernetes.io/docs/concepts/configuration/secret/#docker-config-secrets

Last updated

Was this helpful?