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

Add Index page to VerneMQ HELM charts and propose subdomain #352

Open
wants to merge 2 commits 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
32 changes: 32 additions & 0 deletions .github/workflows/sync-helm-repo.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
on:
push:
branches:
- "master"
paths:
- "CNAME"
- "helm/README.md"

permissions: {}

jobs:
build:
permissions:
contents: write # for git push

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: |
cp -f helm/README.md ${{ runner.temp }}/README.md
cp -f CNAME ${{ runner.temp }}/CNAME
- uses: actions/checkout@v4
with:
ref: gh-pages
- run: |
cp -f ${{ runner.temp }}/README.md .
cp -f ${{ runner.temp }}/CNAME .
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
git add CNAME README.md
git commit --signoff -m "Sync repo website from main"
git push
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
charts.vernemq.com
25 changes: 22 additions & 3 deletions helm/vernemq/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# VerneMQ
# VerneMQ Kubernetes Helm Charts

This is the official Helm Charts repository for installing VerneMQ on Kubernetes.

[VerneMQ](https://vernemq.com/) is a high-performance, distributed MQTT message broker. It scales
horizontally and vertically on commodity hardware to support a high number of
Expand All @@ -20,7 +22,19 @@ This chart bootstraps a [VerneMQ](https://vernemq.com/) deployment on a [Kuberne

## Prerequisites

- Kubernetes 1.9, or 1.5 with Beta features enabled
- Kubernetes 1.9, or 1.5 with Beta features enabled.
- [Helm](https://helm.sh/) must be installed to use the charts. Please refer to Helm’s [documentation](https://helm.sh/docs/intro/install/) to get started.

## Adding this Helm repo

Once Helm is set up properly, add the VerneMQ repo as follows:

```bash
$ helm repo add vernemq https://charts.vernemq.com
$ helm repo update
```

You can then run `helm search repo vernemq` to see the available charts.

## Installing the Chart

Expand Down Expand Up @@ -115,7 +129,7 @@ Parameter | Description | Default
`certificates.key` | String (not base64 encoded) containing the listener private key in PEM format | `nil`
`certificates.ca` | String (not base64 encoded) containing the CA certificate for validating client certs | `nil`
`certificates.secret.labels` | additional labels for the created secret containing certificates and keys | `nil`
`certificates.secret.annotations` | additional labels for the created secret containing certificates and keys | `nil`
`certificates.secret.annotations` | additional labels for the created secret containing certificates and keys | `nil`
`acl.enabled` | whether acls should be applied | `false`
`acl.content` | content of the acl file | `topic #`
`acl.labels` | additional labels on the acl configmap | `{}`
Expand Down Expand Up @@ -247,3 +261,8 @@ additionalEnv:
```

> **Tip**: Cert-Manager includes both CA and TLS certificate in the `tls.crt` file.

## Seeking help

If you run into an issue, bug or have a question, please open Github
issues in the [docker-vernemq](https://github.com/vernemq/docker-vernemq) repository.