Skip to content

Commit

Permalink
Merge pull request #508 from cyberark/upgrade-ruby-branch
Browse files Browse the repository at this point in the history
Upgrade ruby from 2.4 to 3.1
  • Loading branch information
john-odonnell authored Apr 20, 2023
2 parents 5e04542 + 5d25667 commit de821a8
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
[cyberark/conjur-authn-k8s-client#505](https://github.com/cyberark/conjur-authn-k8s-client/pull/505)

### Changed
- Upgrade ruby from 2.4 to 3.1 in bin/test-workflow/test_app_summon/Dockerfile
[cyberark/conjur-authn-k8s-client#508](https://github.com/cyberark/conjur-authn-k8s-client/pull/508)
- Upgrade base image in Dockerfiles to 1.19 and necessary dependencies
[cyberark/conjur-authn-k8s-client#502](https://github.com/cyberark/conjur-authn-k8s-client/pull/502)
- Add a wait for the master before provisioning the follower in the CI tests.
[cyberark/conjur-authn-k8s-client#499](https://github.com/cyberark/conjur-authn-k8s-client/pull/499)
- The version from the automated release should be used in the start up logs
[cyberark/conjur-authn-k8s-client#503](https://github.com/cyberark/conjur-authn-k8s-client/pull/503)
- Update the docs for service account secret
[cyberark/conjur-authn-k8s-client#509](https://github.com/cyberark/conjur-authn-k8s-client/pull/509)

## [0.24.0] - 2022-11-23
### Changed
Expand Down
2 changes: 1 addition & 1 deletion bin/test-workflow/test_app_summon/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:2.4 as test-app-builder
FROM ruby:3.1 as test-app-builder
MAINTAINER CyberArk
LABEL builder="test-app-builder"

Expand Down
14 changes: 14 additions & 0 deletions helm/conjur-config-cluster-prep/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,20 @@ The steps are as follows:
- Authenticator ServiceAccount
- Authenticator ClusterRole

__NOTE: Beginning in Kubernetes 1.24 Kubernetes will not generate Secrets automatically for ServiceAccounts.
Conjur Config Cluster Prep Helm chart versions 0.2.1 and later will create this Service
account secret automatically. For Cluster Prep versions 0.1.x the secret will need to be created manually.
Below is an example to create a service account secret.__
```
apiVersion: v1
kind: Secret
type: kubernetes.io/service-account-token
metadata:
name: conjur-oss-service-account-token
annotations:
kubernetes.io/service-account.name: conjur-oss
```

## Examples: Running Helm Install

### Optional: Creating a Local Copy of This Helm Chart
Expand Down

0 comments on commit de821a8

Please sign in to comment.