Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature: publish to GHCR registry #799

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 22 additions & 1 deletion .github/workflows/release-charts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ on:
# every friday at 4 o'clock
- cron: '0 16 * * 5'
workflow_dispatch:

permissions:
contents: write
packages: write

jobs:
bump-versions:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -71,15 +76,31 @@ jobs:
- name: Install Helm
uses: azure/setup-helm@v1
with:
version: v3.5.1
version: v3.16.1

- name: Add dependency chart repos
run: |
helm repo add bitnami https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami

- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Release charts
uses: helm/[email protected]
with:
charts_dir: charts
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

- name: Push Chart to GHCR
run: |
for pkg in .cr-release-packages/*; do
if [ -z "${pkg:-}" ]; then
break
fi
helm push "${pkg}" oci://ghcr.io/jonesbusy/helm-charts
done
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ Once Helm is set up properly, add the repo as follows:
$ helm repo add codecentric https://codecentric.github.io/helm-charts
```

Helm chart are also published to GitHub container registry as OCI artifact.

## Contributing

We welcome contributions.
Expand Down
6 changes: 6 additions & 0 deletions charts/keycloak/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@
$ helm install keycloak codecentric/keycloak
```

or via GitHub Container Registry:

```console
$ helm install keycloak oci://ghcr.io/codecentric/helm-charts/keycloak --version <version>
```

## Introduction

This chart bootstraps a [Keycloak](http://www.keycloak.org/) StatefulSet on a [Kubernetes](https://kubernetes.io) cluster using the [Helm](https://helm.sh) package manager.
Expand Down
6 changes: 6 additions & 0 deletions charts/keycloakx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@ To install the chart with the release name `keycloakx`:
$ helm install keycloak codecentric/keycloakx
```

or via GitHub Container Registry:

```console
$ helm install keycloak oci://ghcr.io/codecentric/helm-charts/keycloakx --version <version>
```

## Uninstalling the Chart

To uninstall the `keycloakx` deployment:
Expand Down
6 changes: 6 additions & 0 deletions charts/mailhog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ To install the chart with the release name `mailhog`:
$ helm install mailhog codecentric/mailhog
```

or via GitHub Container Registry:

```console
$ helm install mailhog oci://ghcr.io/codecentric/helm-charts/mailhog --version <version>
```

The command deploys Mailhog on the Kubernetes cluster in the default configuration. The [configuration](#configuration)
section lists the parameters that can be configured during installation.

Expand Down
Loading