Skip to content

Commit c398131

Browse files
committed
feat: add rabbitmq operator
1 parent 527c614 commit c398131

File tree

6 files changed

+5826
-0
lines changed

6 files changed

+5826
-0
lines changed

.github/workflows/helm-publish.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
matrix:
2020
include:
2121
- chart: raw
22+
- chart: rabbitmq-operator
2223

2324
steps:
2425
- name: Checkout code

.pre-commit-config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ repos:
1919
rev: v1.31.1
2020
hooks:
2121
- id: typos
22+
exclude: rabbitmq-operator/templates/cluster-operator.yaml
2223

2324
- repo: https://github.com/commitizen-tools/commitizen
2425
rev: v4.9.1
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
apiVersion: v2
2+
description: Helm wrapper for rabbitmq-operator's manifests
3+
keywords:
4+
- rabbitmq
5+
- operator
6+
sources:
7+
- https://github.com/toggle-corp/helm-charts/tree/main/toggle/rabbitmq-operator
8+
- https://github.com/rabbitmq/cluster-operator/
9+
maintainers:
10+
- name: Toggle
11+
email: dev@togglecorp.com
12+
13+
# https://github.com/rabbitmq/cluster-operator/releases
14+
name: rabbitmq-operator
15+
16+
# NOTE: run ./pull-manifests.sh this to fetch the related manifests from remote
17+
# renovate: datasource=github-tags depName=rabbitmq/cluster-operator
18+
version: v2.17.0
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
3+
BASE_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
4+
cd "$BASE_DIR"
5+
6+
OPERATOR_VERSION=$(yq .version ./Chart.yaml)
7+
8+
curl -L \
9+
-o templates/cluster-operator.yaml \
10+
"https://github.com/rabbitmq/cluster-operator/releases/download/$OPERATOR_VERSION/cluster-operator.yml"

0 commit comments

Comments
 (0)