To install Reloader Enterprise#
You first need a subscription to install Reloader Enterprise. Contact sales@stakater.com
.
When you have bought a subscription, you can install Reloader Enterprise from ghcr in two ways:
- By providing Stakater a GitHub user
- By requesting Stakater to provide you a token
Install by providing Stakater a GitHub user#
The installation instructions for Reloader Enterprise generally follow the installation instructions for the Reloader Helm Chart, with the following exceptions:
- Ask Stakater to add your GitHub user as a collaborator, and accept the invite
- On behalf of the GitHub user that was added as a collaborator in this repository, create a GitHub token that allows you to read packages from GitHub Package Registry
-
Save the GitHub token in a Kubernetes secret in the cluster where Reloader will be installed, so Helm can use it to authenticate against the package registry:
kubectl create secret docker-registry regcred --docker-server ghcr.io --docker-username <username> --docker-password <password>
-
Install Reloader Enterprise via the OSS Helm chart, but specify the
reloader-enterprise
image and the pull secret to authenticate against the private package registry, for example:helm install stakater/reloader --set image.repository=ghcr.io/stakater/reloader-enterprise --set image.tag=v1.4.1 --set "global.imagePullSecrets[0].name=regcred" --generate-name
Install by requesting Stakater to provide you a token#
- Ask Stakater to provide you a token
-
Save the GitHub token in a Kubernetes secret in the cluster where Reloader will be installed, so Helm can use it to authenticate against the package registry:
kubectl create secret docker-registry regcred --docker-server ghcr.io --docker-username reloader-enterprise --docker-password <token from Stakater>
-
Install Reloader Enterprise via the OSS Helm chart, but specify the
reloader-enterprise
image and the pull secret to authenticate against the private package registry, for example:helm install stakater/reloader --set image.repository=ghcr.io/stakater/reloader-enterprise --set image.tag=v1.4.1 --set "global.imagePullSecrets[0].name=regcred" --generate-name
To see which versions are available#
Image tags for Reloader Enterprise correspond to the same image tags that are available in the open-source version of Reloader. The Enterprise version is only available for the versions that have passed the enterprise quality assessments, so fewer version are available compared to the open-source version. All versions can be found on the package page.
You can also use the GitHub API: curl -L -H "Accept: application/vnd.github+json" -H "Authorization: Bearer <token>" -H "X-GitHub-Api-Version: 2022-11-28" https://api.github.com/orgs/stakater/packages/container/reloader-enterprise/versions