From f97c8d3121a2c81b96dec2664e4293ae136db314 Mon Sep 17 00:00:00 2001 From: Frederic Branczyk Date: Wed, 24 Oct 2018 13:36:54 +0200 Subject: [PATCH 1/2] *: Bump version to v0.4.0 --- VERSION | 2 +- examples/non-resource-url/README.md | 2 +- examples/non-resource-url/deployment.yaml | 2 +- examples/oidc/deployment.yaml | 2 +- examples/resource-attributes/README.md | 2 +- examples/resource-attributes/deployment.yaml | 2 +- examples/rewrites/README.md | 2 +- examples/rewrites/deployment.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/VERSION b/VERSION index 937cd7846..fb7a04cff 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v0.3.1 +v0.4.0 diff --git a/examples/non-resource-url/README.md b/examples/non-resource-url/README.md index 5b2e99e9a..b79b9c718 100644 --- a/examples/non-resource-url/README.md +++ b/examples/non-resource-url/README.md @@ -76,7 +76,7 @@ spec: serviceAccountName: kube-rbac-proxy containers: - name: kube-rbac-proxy - image: quay.io/brancz/kube-rbac-proxy:v0.3.1 + image: quay.io/brancz/kube-rbac-proxy:v0.4.0 args: - "--secure-listen-address=0.0.0.0:8443" - "--upstream=http://127.0.0.1:8081/" diff --git a/examples/non-resource-url/deployment.yaml b/examples/non-resource-url/deployment.yaml index 74ffb080e..522bf91a9 100644 --- a/examples/non-resource-url/deployment.yaml +++ b/examples/non-resource-url/deployment.yaml @@ -58,7 +58,7 @@ spec: serviceAccountName: kube-rbac-proxy containers: - name: kube-rbac-proxy - image: quay.io/brancz/kube-rbac-proxy:v0.3.1 + image: quay.io/brancz/kube-rbac-proxy:v0.4.0 args: - "--secure-listen-address=0.0.0.0:8443" - "--upstream=http://127.0.0.1:8081/" diff --git a/examples/oidc/deployment.yaml b/examples/oidc/deployment.yaml index 10c69bb83..e6dee5548 100644 --- a/examples/oidc/deployment.yaml +++ b/examples/oidc/deployment.yaml @@ -63,7 +63,7 @@ spec: serviceAccountName: kube-rbac-proxy containers: - name: kube-rbac-proxy - image: quay.io/brancz/kube-rbac-proxy:v0.3.1 + image: quay.io/brancz/kube-rbac-proxy:v0.4.0 args: - "--insecure-listen-address=0.0.0.0:8444" - "--upstream=http://127.0.0.1:8081/" diff --git a/examples/resource-attributes/README.md b/examples/resource-attributes/README.md index 6f2d2308e..a6cb6f613 100644 --- a/examples/resource-attributes/README.md +++ b/examples/resource-attributes/README.md @@ -90,7 +90,7 @@ spec: serviceAccountName: kube-rbac-proxy containers: - name: kube-rbac-proxy - image: quay.io/brancz/kube-rbac-proxy:v0.3.1 + image: quay.io/brancz/kube-rbac-proxy:v0.4.0 args: - "--secure-listen-address=0.0.0.0:8443" - "--upstream=http://127.0.0.1:8081/" diff --git a/examples/resource-attributes/deployment.yaml b/examples/resource-attributes/deployment.yaml index bd6df9f31..e9aeea6e6 100644 --- a/examples/resource-attributes/deployment.yaml +++ b/examples/resource-attributes/deployment.yaml @@ -72,7 +72,7 @@ spec: serviceAccountName: kube-rbac-proxy containers: - name: kube-rbac-proxy - image: quay.io/brancz/kube-rbac-proxy:v0.3.1 + image: quay.io/brancz/kube-rbac-proxy:v0.4.0 args: - "--secure-listen-address=0.0.0.0:8443" - "--upstream=http://127.0.0.1:8081/" diff --git a/examples/rewrites/README.md b/examples/rewrites/README.md index 67afc4baa..739b84d7f 100644 --- a/examples/rewrites/README.md +++ b/examples/rewrites/README.md @@ -92,7 +92,7 @@ spec: serviceAccountName: kube-rbac-proxy containers: - name: kube-rbac-proxy - image: quay.io/brancz/kube-rbac-proxy:v0.3.1 + image: quay.io/brancz/kube-rbac-proxy:v0.4.0 args: - "--secure-listen-address=0.0.0.0:8443" - "--upstream=http://127.0.0.1:8081/" diff --git a/examples/rewrites/deployment.yaml b/examples/rewrites/deployment.yaml index 7af3d2532..1fe0fd3b2 100644 --- a/examples/rewrites/deployment.yaml +++ b/examples/rewrites/deployment.yaml @@ -74,7 +74,7 @@ spec: serviceAccountName: kube-rbac-proxy containers: - name: kube-rbac-proxy - image: quay.io/brancz/kube-rbac-proxy:v0.3.1 + image: quay.io/brancz/kube-rbac-proxy:v0.4.0 args: - "--secure-listen-address=0.0.0.0:8443" - "--upstream=http://127.0.0.1:8081/" From c10464d88c4168a5c8d0746b9f75e77b51fb37aa Mon Sep 17 00:00:00 2001 From: Frederic Branczyk Date: Wed, 24 Oct 2018 13:38:24 +0200 Subject: [PATCH 2/2] CHANGELOG.md: Set next release to v0.4.0 --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a249512f8..93ad460d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ## Next release +## 0.4.0 / 2018-10-24 + * [CHANGE] The config file flag has been renamed to `--config-file`. * [CHANGE] There is a breaking change in the configuration. All configuration that was previously valid, is now nested in `.authorization.resourceAttributes`. * [FEATURE] Add OIDC token authentication provider (note: this is not a client code flow for client authentication).