Step 2: Package the Gitea Helm Chart
Next, get the sample Gitea Helm chart from Bitnami. Add the Replicated SDK as a dependency of the chart, then package the chart into a .tgz archive. The purpose of this step is to prepare the Helm chart to be added to a release.
The Replicated SDK is a Helm chart that can be optionally added as a dependency of your application Helm chart. The SDK is installed as a small service running alongside your application, and provides an in-cluster API that you can use to embed Replicated features into your application. Additionally, the Replicated SDK provides access to insights and telemetry for instances of your application installed with the Helm CLI.
To add the Replicated SDK and package the Helm chart:
-
Run the following command to pull and untar version 1.0.6 of the Bitnami Gitea Helm chart:
helm pull --untar oci://registry-1.docker.io/bitnamicharts/gitea --version 1.0.6For more information about this chart, see the bitnami/gitea repository in GitHub.
-
Change to the new
giteadirectory that was created:cd gitea -
View the files in the directory:
lsThe directory contains the following files:
Chart.lock Chart.yaml README.md charts templates values.yaml -
In the
Chart.yamlfile, add the Replicated SDK as a dependency:# Chart.yaml
dependencies:
- name: replicated
repository: oci://registry.replicated.com/library
version: 1.7.0For the latest version information for the Replicated SDK, see the replicated-sdk repository in GitHub.
-
Update dependencies and package the Helm chart to a
.tgzchart archive:helm package . --dependency-updatenoteIf you see a
401 Unauthorizederror message, log out of the Replicated registry by runninghelm registry logout registry.replicated.comand then runhelm package . --dependency-updateagain.
Next Step
Create a release using the Helm chart archive. See Step 3: Add the Chart Archive to a Release.