The chart is published to GitHub Container Registry and can be installed only with Helm 3.
Helm 3 CLI requires enabling OCI registry support.
export HELM_EXPERIMENTAL_OCI=1
First, find the appropriate version from available releases list.
Then, download the chart with choosen ${VERSION}
to a local directory.
helm pull oci://ghcr.io/eshepelyuk/apicurio-registry --version ${VERSION}
The command above will download a file named apicurio-registry-${VERSION}.tgz
.
After that, chart is ready to be installed (or upgraded), we suggest to install it into a dedicated namespace.
helm upgrade -i --wait --create-namespace -n apicurio myreg apicurio-registry-${VERSION}.tgz
- Forward local port to installed registry instance
kubectl port-forward service/myreg-apicurio-registry 8080:8080
-
Open your browser at
Chart parameters can be configured via Helm values files.
Check out values schema for the available configuration options.
Your contributions like feature suggesstions, bug reports and pull requests are always welcomed. Please check CONTRIBUTING page for details.