diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 9b7a411..84e89fc 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 1.3.0 +current_version = 1.3.1 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-rc(?P\d+))? serialize = {major}.{minor}.{patch}-rc{rc} diff --git a/deploy/charts/grafana-multi-tenant-operator/Chart.yaml b/deploy/charts/grafana-multi-tenant-operator/Chart.yaml index 62c770e..1d0fb48 100644 --- a/deploy/charts/grafana-multi-tenant-operator/Chart.yaml +++ b/deploy/charts/grafana-multi-tenant-operator/Chart.yaml @@ -2,5 +2,5 @@ apiVersion: v2 name: grafana-multi-tenant-operator description: A Helm chart for the Grafana Multi Tenant Operator by K8Spin. type: application -version: 1.3.0 -appVersion: v1.3.0 +version: 1.3.1 +appVersion: v1.3.1 diff --git a/deploy/operator.yaml b/deploy/operator.yaml index e9e4f49..9d2c4f3 100644 --- a/deploy/operator.yaml +++ b/deploy/operator.yaml @@ -18,7 +18,7 @@ spec: serviceAccountName: grafana-multi-tenant-operator containers: - name: grafana-multi-tenant-operator - image: ghcr.io/k8spin/grafana-multi-tenant-operator:v1.3.0 + image: ghcr.io/k8spin/grafana-multi-tenant-operator:v1.3.1 imagePullPolicy: IfNotPresent command: ["/bin/bash"] args: ["-c", "kopf run /src/handler.py --verbose --namespace=${NAMESPACE}"] diff --git a/docs/DEVELOPMENT.md b/docs/DEVELOPMENT.md index 14378c7..144bf61 100644 --- a/docs/DEVELOPMENT.md +++ b/docs/DEVELOPMENT.md @@ -41,7 +41,7 @@ Build the Grafana multi-tenant operator image and push it to a public registry s ```bash $ pwd grafana-multi-tenant-operator -$ export IMAGE=ghcr.io/k8spin/grafana-multi-tenant-operator:v1.3.0 +$ export IMAGE=ghcr.io/k8spin/grafana-multi-tenant-operator:v1.3.1 $ docker build -t ${IMAGE} . $ docker push ${IMAGE} ```