Skip to content

Commit 96eba7c

Browse files
committed
Bump version: 1.0.11 → 1.0.12
1 parent 20b08f9 commit 96eba7c

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[bumpversion]
22
commit = True
33
tag = True
4-
current_version = 1.0.11
4+
current_version = 1.0.12
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-rc(?P<rc>\d+))?
66
serialize =
77
{major}.{minor}.{patch}-rc{rc}

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<!-- markdownlint-enable MD033 -->
77

88
[![Build Status](https://ci.sighup.io/api/badges/sighupio/gatekeeper-policy-manager/status.svg)](https://ci.sighup.io/sighupio/gatekeeper-policy-manager)
9-
![GPM Release](https://img.shields.io/badge/GPM-v1.0.11-blue)
9+
![GPM Release](https://img.shields.io/badge/GPM-v1.0.12-blue)
1010
![Helm Chart Release](https://img.shields.io/badge/Helm%20Chart-v0.4.1-blue)
1111
![Slack](https://img.shields.io/badge/slack-@kubernetes/fury-yellow.svg?logo=slack)
1212
![License](https://img.shields.io/github/license/sighupio/gatekeeper-policy-manager)
@@ -57,7 +57,7 @@ Then, execute:
5757

5858
```bash
5959
helm repo add gpm https://sighupio.github.io/gatekeeper-policy-manager
60-
helm upgrade --install --namespace gatekeeper-system --set image.tag=v1.0.11 --values my-values.yaml gatekeeper-policy-manager gpm/gatekeeper-policy-manager
60+
helm upgrade --install --namespace gatekeeper-system --set image.tag=v1.0.12 --values my-values.yaml gatekeeper-policy-manager gpm/gatekeeper-policy-manager
6161
```
6262

6363
> don't forget to replace `my-values.yaml` with the path to your values file.
@@ -67,7 +67,7 @@ helm upgrade --install --namespace gatekeeper-system --set image.tag=v1.0.11 --v
6767
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:
6868

6969
```bash
70-
docker run -v ~/.kube/config:/home/gpm/.kube/config -p 8080:8080 quay.io/sighup/gatekeeper-policy-manager:v1.0.11
70+
docker run -v ~/.kube/config:/home/gpm/.kube/config -p 8080:8080 quay.io/sighup/gatekeeper-policy-manager:v1.0.12
7171
```
7272

7373
Then access it with your browser on: [http://127.0.0.1:8080](http://127.0.0.1:8080)
@@ -102,7 +102,7 @@ GPM is a stateless application, but it can be configured using environment varia
102102
103103
### Multi-cluster support
104104

105-
Since `v1.0.11` 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.
105+
Since `v1.0.12` 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.
106106

107107
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.
108108

@@ -122,7 +122,7 @@ You can customize the container image with a `Dockerfile` like the following:
122122
FROM curlimages/curl:7.81.0 as downloader
123123
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
124124
RUN chmod +x /tmp/aws-iam-authenticator
125-
FROM quay.io/sighup/gatekeeper-policy-manager:v1.0.11
125+
FROM quay.io/sighup/gatekeeper-policy-manager:v1.0.12
126126
COPY --from=downloader --chown=root:root /tmp/aws-iam-authenticator /usr/local/bin/
127127
```
128128

app/web-client/src/components/Footer/Component.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function FooterComponent() {
2222
<EuiFlexItem grow={false}>
2323
<EuiText size="s" className="dynamic">
2424
<p>
25-
<strong>Gatekeeper Policy Manager v1.0.11</strong>
25+
<strong>Gatekeeper Policy Manager v1.0.12</strong>
2626
</p>
2727
</EuiText>
2828
<EuiText size="s">

chart/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ version: "0.11.0"
2424
# This is the version number of the application being deployed. This version number should be
2525
# incremented each time you make changes to the application. Versions are not expected to
2626
# follow Semantic Versioning. They should reflect the version the application is using.
27-
appVersion: "v1.0.11"
27+
appVersion: "v1.0.12"

chart/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The following table lists the configurable parameters of the Gatekeeper Policy M
1111
| `replicaCount` | | 1 |
1212
| `image.repository` | | "quay.io/sighup/gatekeeper-policy-manager" |
1313
| `image.pullPolicy` | | "IfNotPresent" |
14-
| `image.tag` | | "v1.0.11" |
14+
| `image.tag` | | "v1.0.12" |
1515
| `command` | | null |
1616
| `args` | | null |
1717
| `imagePullSecrets` | | [] |

chart/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ image:
88
repository: quay.io/sighup/gatekeeper-policy-manager
99
pullPolicy: IfNotPresent
1010
# Overrides the image tag whose default is the chart appVersion.
11-
tag: "v1.0.11"
11+
tag: "v1.0.12"
1212

1313
# # Override gatekeeper-policy-manager container entrypoint/args
1414
# # See https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/

kustomization.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ resources:
2929

3030
images:
3131
- name: quay.io/sighup/gatekeeper-policy-manager
32-
newTag: "v1.0.11"
32+
newTag: "v1.0.12"

0 commit comments

Comments
 (0)