Documentation Hub
On-Premise
On-Premise
  • On-Premise Installation Manual
  • Keyless Backend Installation
    • Planning for installation
    • Components
  • Infrastructural requirements
  • Monitoring
  • Installation procedure
    • General Configuration
    • Namespace
    • Helm setup
    • Node Persistence
    • Circuit Storage
    • Core Daemon
    • Metrics Collector
    • Operations Service
    • Administrator Dashboard
  • Upgrade procedure
    • Cluster and Runtime
      • Breaking changes
        • Release 1.3.0
    • Databases
  • Checking the installation completed successfully
  • Helm and Components Versions
Powered by GitBook
On this page

Was this helpful?

  1. Installation procedure

Helm setup

Last updated 1 month ago

Was this helpful?

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

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

helm show values keyless/circuit-storage

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
Helm search repo
Helm show values
Helm search repo
Helm show values