From c53127aa5fff4c1e7ef693c4a0d9a7c845246ec9 Mon Sep 17 00:00:00 2001 From: Ramiro Algozino Date: Mon, 16 May 2022 17:25:55 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.0.0-rc3=20=E2=86=92=201.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- README.md | 8 ++++---- app/templates/footer.html | 2 +- app/web-client/src/components/Footer/Component.tsx | 2 +- chart/Chart.yaml | 2 +- chart/values.yaml | 2 +- kustomization.yaml | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index cea42f3c..475b175b 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 1.0.0-rc3 +current_version = 1.0.0 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-rc(?P\d+))? serialize = {major}.{minor}.{patch}-rc{rc} diff --git a/README.md b/README.md index 6ea7a9b5..2608ef3b 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ Then, execute: ```bash helm repo add gpm https://sighupio.github.io/gatekeeper-policy-manager -helm upgrade --install --namespace gatekeeper-system --set image.tag=v1.0.0-rc3 --values my-values.yaml gatekeeper-policy-managergpm/gatekeeper-policy-manager +helm upgrade --install --namespace gatekeeper-system --set image.tag=v1.0.0 --values my-values.yaml gatekeeper-policy-managergpm/gatekeeper-policy-manager ``` ## Running locally @@ -62,7 +62,7 @@ helm upgrade --install --namespace gatekeeper-system --set image.tag=v1.0.0-rc3 GPM can also be run locally using docker and a `kubeconfig`, assuming that the `kubeconfig` file you want to use is located at `~/.kube/config` the command to run GPM locally would be: ```bash -docker run -v ~/.kube/config:/home/gpm/.kube/config -p 8080:8080 quay.io/sighup/gatekeeper-policy-manager:v1.0.0-rc3 +docker run -v ~/.kube/config:/home/gpm/.kube/config -p 8080:8080 quay.io/sighup/gatekeeper-policy-manager:v1.0.0 ``` Then access it with your browser on: [http://127.0.0.1:8080](http://127.0.0.1:8080) @@ -97,7 +97,7 @@ GPM is a stateless application, but it can be configured using environment varia ### Multi-cluster support -Since `v1.0.0-rc3` GPM has basic multi-cluster support when using a `kubeconfig` with more than one context. GPM will let you chose the context right from the UI. +Since `v1.0.0` GPM has basic multi-cluster support when using a `kubeconfig` with more than one context. GPM will let you chose the context right from the UI. If you want to run GPM in a cluster but with multi-cluster support, it's as easy as mounting a `kubeconfig` file in GPM's pod(s) with the cluster access configuration and set the environment variable `KUBECONFIG` with the path to the mounted `kubeconfig` file. Or you can simply mount it in `/home/gpm/.kube/config` and GPM will detect it automatically. @@ -117,7 +117,7 @@ You can customize the container image with a `Dockerfile` like the following: FROM curlimages/curl:7.81.0 as downloader RUN curl https://github.com/kubernetes-sigs/aws-iam-authenticator/releases/download/v0.5.5/aws-iam-authenticator_0.5.5_linux_amd64 --output /tmp/aws-iam-authenticator RUN chmod +x /tmp/aws-iam-authenticator -FROM quay.io/sighup/gatekeeper-policy-manager:v1.0.0-rc3 +FROM quay.io/sighup/gatekeeper-policy-manager:v1.0.0 COPY --from=downloader --chown=root:root /tmp/aws-iam-authenticator /usr/local/bin/ ``` diff --git a/app/templates/footer.html b/app/templates/footer.html index 601ead53..a4bece97 100644 --- a/app/templates/footer.html +++ b/app/templates/footer.html @@ -11,7 +11,7 @@

GPM logo
- Gatekeeper Policy Manager v1.0.0-rc3 + Gatekeeper Policy Manager v1.0.0
A simple to use web-based Gatekeeper policies manager

diff --git a/app/web-client/src/components/Footer/Component.tsx b/app/web-client/src/components/Footer/Component.tsx index c4631bfe..73e9bd3a 100644 --- a/app/web-client/src/components/Footer/Component.tsx +++ b/app/web-client/src/components/Footer/Component.tsx @@ -22,7 +22,7 @@ function FooterComponent() {

- Gatekeeper Policy Manager v1.0.0-rc3 + Gatekeeper Policy Manager v1.0.0

diff --git a/chart/Chart.yaml b/chart/Chart.yaml index 6571045e..e48bfad0 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -20,4 +20,4 @@ version: 0.2.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. -appVersion: "v1.0.0-rc3" +appVersion: "v1.0.0" diff --git a/chart/values.yaml b/chart/values.yaml index c1fd13b3..8a09425a 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -8,7 +8,7 @@ image: repository: quay.io/sighup/gatekeeper-policy-manager pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. - tag: "v1.0.0-rc3" + tag: "v1.0.0" imagePullSecrets: [] nameOverride: "" diff --git a/kustomization.yaml b/kustomization.yaml index 5c62ae52..3c1e6f81 100644 --- a/kustomization.yaml +++ b/kustomization.yaml @@ -29,4 +29,4 @@ resources: images: - name: quay.io/sighup/gatekeeper-policy-manager - newTag: "v1.0.0-rc3" + newTag: "v1.0.0"