Skip to content

Commit

Permalink
Merge pull request #382 from cyberark/bump-version-1-1-6
Browse files Browse the repository at this point in the history
Bump version to 1.1.6
  • Loading branch information
jtuttle authored Oct 30, 2021
2 parents cd66304 + 22e8133 commit 44748a5
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 6 deletions.
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,23 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [1.1.6] - 2021-10-29

### Added
- Adds support for Secrets Provider M1 Push-to-File feature, Community release.
[cyberark/secrets-provider-for-k8s#358](https://github.com/cyberark/secrets-provider-for-k8s/pull/358)
[cyberark/secrets-provider-for-k8s#359](https://github.com/cyberark/secrets-provider-for-k8s/pull/359)
[cyberark/secrets-provider-for-k8s#362](https://github.com/cyberark/secrets-provider-for-k8s/pull/362)
[cyberark/secrets-provider-for-k8s#363](https://github.com/cyberark/secrets-provider-for-k8s/pull/363)
[cyberark/secrets-provider-for-k8s#364](https://github.com/cyberark/secrets-provider-for-k8s/pull/364)
[cyberark/secrets-provider-for-k8s#366](https://github.com/cyberark/secrets-provider-for-k8s/pull/366)
[cyberark/secrets-provider-for-k8s#367](https://github.com/cyberark/secrets-provider-for-k8s/pull/367)
[cyberark/secrets-provider-for-k8s#368](https://github.com/cyberark/secrets-provider-for-k8s/pull/368)
[cyberark/secrets-provider-for-k8s#376](https://github.com/cyberark/secrets-provider-for-k8s/pull/376)
[cyberark/secrets-provider-for-k8s#377](https://github.com/cyberark/secrets-provider-for-k8s/pull/377)
[cyberark/secrets-provider-for-k8s#378](https://github.com/cyberark/secrets-provider-for-k8s/pull/378)
- Support for OpenShift 4.8 has been added.
[cyberark/secrets-provider-for-k8s#360](https://github.com/cyberark/secrets-provider-for-k8s/pull/360)

## [1.1.5] - 2021-08-13

Expand Down Expand Up @@ -131,7 +146,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Changed
- Escape secrets with backslashes before patching in k8s

[Unreleased]: https://github.com/cyberark/secrets-provider-for-k8s/compare/v1.1.5...HEAD
[Unreleased]: https://github.com/cyberark/secrets-provider-for-k8s/compare/v1.1.6...HEAD
[1.1.6]: https://github.com/cyberark/secrets-provider-for-k8s/compare/v1.1.5...v1.1.6
[1.1.5]: https://github.com/cyberark/secrets-provider-for-k8s/compare/v1.1.4...v1.1.5
[1.1.4]: https://github.com/cyberark/secrets-provider-for-k8s/compare/v1.1.3...v1.1.4
[1.1.3]: https://github.com/cyberark/secrets-provider-for-k8s/compare/v1.1.2...v1.1.3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ $cli_with_timeout "get RoleBinding secrets-provider-role-binding"
$cli_with_timeout "get ConfigMap cert-config-map"

# Validate that the Secrets Provider took the default image configurations if not supplied and was deployed successfully
$cli_with_timeout "describe job secrets-provider | grep 'cyberark/secrets-provider-for-k8s:1.1.5'" | awk '{print $2}' && $cli_with_timeout "get job secrets-provider -o jsonpath={.status.succeeded}"
$cli_with_timeout "describe job secrets-provider | grep 'cyberark/secrets-provider-for-k8s:1.1.6'" | awk '{print $2}' && $cli_with_timeout "get job secrets-provider -o jsonpath={.status.succeeded}"
2 changes: 1 addition & 1 deletion helm/secrets-provider/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
description: A Helm chart for deploying CyberArk Secrets Provider for Kubernetes
name: secrets-provider
version: 1.1.5
version: 1.1.6
home: https://github.com/cyberark/secrets-provider-for-k8s
icon: https://www.cyberark.com/wp-content/uploads/2015/12/cybr-aim.jpg
2 changes: 1 addition & 1 deletion helm/secrets-provider/tests/secrets_provider_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ tests:
# Confirm that default chart values have been used
- equal:
path: spec.template.spec.containers[0].image
value: docker.io/cyberark/secrets-provider-for-k8s:1.1.5
value: docker.io/cyberark/secrets-provider-for-k8s:1.1.6
- equal:
path: spec.template.spec.containers[0].imagePullPolicy
value: IfNotPresent
Expand Down
2 changes: 1 addition & 1 deletion helm/secrets-provider/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ rbac:

secretsProvider:
image: docker.io/cyberark/secrets-provider-for-k8s
tag: 1.1.5
tag: 1.1.6
imagePullPolicy: IfNotPresent
# Container name
name: cyberark-secrets-provider-for-k8s
Expand Down
2 changes: 1 addition & 1 deletion pkg/secrets/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package secrets
import "fmt"

// Version field is a SemVer that should indicate the baked-in version
var Version = "1.1.5"
var Version = "1.1.6"

// Tag field denotes the specific build type for the broker. It may
// be replaced by compile-time variables if needed to provide the git
Expand Down

0 comments on commit 44748a5

Please sign in to comment.