From f4a349cb45c9ca8607e7f5f58be56e1ab767026b Mon Sep 17 00:00:00 2001 From: Fabian Jucker Date: Tue, 16 Jul 2019 09:34:14 +0200 Subject: [PATCH 1/2] add tag to image in kubernetes deployment --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 19ae2e8..e707042 100644 --- a/README.md +++ b/README.md @@ -97,7 +97,7 @@ spec: key: key - name: JWT_TOKEN_LIFETIME value: #jwt token lifetime (see "Configuration" in README) - image: gyselroth/kube-ldap + image: gyselroth/kube-ldap:latest # Better use fixed version tag here since 'latest' can point to new major releases with breaking changes volumeMounts: - name: kube-ldap-tls mountPath: "/etc/ssl/kube-ldap" From 83e6cad57ab01ba86d52b2a6518c3eae6193bf5a Mon Sep 17 00:00:00 2001 From: Fabian Jucker Date: Tue, 16 Jul 2019 09:35:09 +0200 Subject: [PATCH 2/2] version bump to 2.0.1 --- CHANGELOG.md | 7 ++++++- package.json | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f7cc2e..1e16aa5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.1] - 2019-07-16 +### Fixed +- For every authentication or token review request a new ldap connection is used, instead using a single connection for all requests. This resolves problems where the single connection went unresponsive (https://github.com/gyselroth/kube-ldap/issues/27). + ## [2.0.0] - 2019-06-12 ### Added - Prometheus exporter on route "/metrics" (basic auth protected) @@ -55,7 +59,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial key functionality -[Unreleased]: https://github.com/gyselroth/kube-ldap/compare/v2.0.0...master +[Unreleased]: https://github.com/gyselroth/kube-ldap/compare/v2.0.1...master +[2.0.1]: https://github.com/gyselroth/kube-ldap/compare/v2.0.0...v2.0.1 [2.0.0]: https://github.com/gyselroth/kube-ldap/compare/v1.3.0...v2.0.0 [1.3.0]: https://github.com/gyselroth/kube-ldap/compare/v1.2.1...v1.3.0 [1.3.0]: https://github.com/gyselroth/kube-ldap/compare/v1.2.1...v1.3.0 diff --git a/package.json b/package.json index 248926c..9b5c998 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "kube-ldap", - "version": "2.0.0", + "version": "2.0.1", "description": "kubernetes token webhook to check bearer tokens against ldap", "main": "src/index.js", "author": "Fabian Jucker ",