Skip to content

Commit

Permalink
Bump version: 1.0.7 → 1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
ralgozino committed Aug 10, 2023
1 parent 0bec3de commit 12861de
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = True
current_version = 1.0.7
current_version = 1.0.8
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-rc(?P<rc>\d+))?
serialize =
{major}.{minor}.{patch}-rc{rc}
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<!-- markdownlint-enable MD033 -->

[![Build Status](https://ci.sighup.io/api/badges/sighupio/gatekeeper-policy-manager/status.svg)](https://ci.sighup.io/sighupio/gatekeeper-policy-manager)
![GPM Release](https://img.shields.io/badge/GPM-v1.0.7-blue)
![GPM Release](https://img.shields.io/badge/GPM-v1.0.8-blue)
![Helm Chart Release](https://img.shields.io/badge/Helm%20Chart-v0.4.1-blue)
![Slack](https://img.shields.io/badge/slack-@kubernetes/fury-yellow.svg?logo=slack)
![License](https://img.shields.io/github/license/sighupio/gatekeeper-policy-manager)
Expand Down Expand Up @@ -57,7 +57,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.7 --values my-values.yaml gatekeeper-policy-manager gpm/gatekeeper-policy-manager
helm upgrade --install --namespace gatekeeper-system --set image.tag=v1.0.8 --values my-values.yaml gatekeeper-policy-manager gpm/gatekeeper-policy-manager
```

> don't forget to replace `my-values.yaml` with the path to your values file.
Expand All @@ -67,7 +67,7 @@ helm upgrade --install --namespace gatekeeper-system --set image.tag=v1.0.7 --va
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.7
docker run -v ~/.kube/config:/home/gpm/.kube/config -p 8080:8080 quay.io/sighup/gatekeeper-policy-manager:v1.0.8
```

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

Since `v1.0.7` 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.8` 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.

Expand All @@ -122,7 +122,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.7
FROM quay.io/sighup/gatekeeper-policy-manager:v1.0.8
COPY --from=downloader --chown=root:root /tmp/aws-iam-authenticator /usr/local/bin/
```

Expand Down
2 changes: 1 addition & 1 deletion app/web-client/src/components/Footer/Component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function FooterComponent() {
<EuiFlexItem grow={false}>
<EuiText size="s" className="dynamic">
<p>
<strong>Gatekeeper Policy Manager v1.0.7</strong>
<strong>Gatekeeper Policy Manager v1.0.8</strong>
</p>
</EuiText>
<EuiText size="s">
Expand Down
2 changes: 1 addition & 1 deletion chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ version: "0.7.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.7"
appVersion: "v1.0.8"
2 changes: 1 addition & 1 deletion chart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The following table lists the configurable parameters of the Gatekeeper Policy M
| `replicaCount` | | 1 |
| `image.repository` | | "quay.io/sighup/gatekeeper-policy-manager" |
| `image.pullPolicy` | | "IfNotPresent" |
| `image.tag` | | "v1.0.7" |
| `image.tag` | | "v1.0.8" |
| `command` | | null |
| `args` | | null |
| `imagePullSecrets` | | [] |
Expand Down
2 changes: 1 addition & 1 deletion chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.7"
tag: "v1.0.8"

# # Override gatekeeper-policy-manager container entrypoint/args
# # See https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/
Expand Down
2 changes: 1 addition & 1 deletion kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ resources:

images:
- name: quay.io/sighup/gatekeeper-policy-manager
newTag: "v1.0.7"
newTag: "v1.0.8"

0 comments on commit 12861de

Please sign in to comment.