You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
68
68
69
69
```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
71
71
```
72
72
73
73
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
102
102
103
103
### Multi-cluster support
104
104
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.
106
106
107
107
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.
108
108
@@ -122,7 +122,7 @@ You can customize the container image with a `Dockerfile` like the following:
122
122
FROM curlimages/curl:7.81.0 as downloader
123
123
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
124
124
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
0 commit comments