πŸ“–Custom Resource Definitions

Agumbe CRDs for Kubernetes

The install steps remain common for all CRDs. Simplest if Helm is installed and is used for supporting the installation.

Install

Pre-Requisites

Ensure you have the following pre-requisites completed before proceeding with the installation using Helm:

  • Helm is installed on your machine.

  • A Kubernetes cluster is already up and running.

Using Helm

To install using Helm, run the following commands:

helm repo add [REPO_NAME] [REPO_URL]
helm repo update
helm install [RELEASE_NAME] [REPO_NAME]/[CHART_NAME]

Replace [REPO_NAME], [REPO_URL], [RELEASE_NAME], and [CHART_NAME] with the relevant details for your installation.

Configure

After installing, you can configure the service by editing the generated values file:

helm inspect values [REPO_NAME]/[CHART_NAME] > values.yaml

Edit values.yaml as needed, then apply the changes with:

Last updated