-
Notifications
You must be signed in to change notification settings - Fork 0
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
Comparing changes
Choose two branches to see what’s changed or to start a new pull request.
If you need to, you can also or
learn more about diff comparisons.
Open a pull request
Create a new pull request by comparing changes across two branches. If you need to, you can also .
Learn more about diff comparisons here.
base repository: komailo/helm-charts
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 979fc4b
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: komailo/helm-charts
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d26416c
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 2 commits
- 7 files changed
- 1 contributor
Commits on Feb 13, 2025
-
chore(deps): update auto merge minor updates (#92)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [cert-manager](https://cert-manager.io) ([source](https://github.com/cert-manager/cert-manager)) | | minor | `v1.16.2` -> `v1.17.1` | | [helm/chart-releaser-action](https://github.com/helm/chart-releaser-action) | action | minor | `v1.6.0` -> `v1.7.0` | | [helm/chart-testing-action](https://github.com/helm/chart-testing-action) | action | minor | `v2.6.1` -> `v2.7.0` | --- ### Release Notes <details> <summary>cert-manager/cert-manager (cert-manager)</summary> ### [`v1.17.1`](https://github.com/cert-manager/cert-manager/compare/v1.17.0...v1.17.1) [Compare Source](https://github.com/cert-manager/cert-manager/compare/v1.17.0...v1.17.1) ### [`v1.17.0`](https://github.com/cert-manager/cert-manager/releases/tag/v1.17.0) [Compare Source](https://github.com/cert-manager/cert-manager/compare/v1.16.4...v1.17.0) cert-manager is the easiest way to automatically manage certificates in Kubernetes and OpenShift clusters. v1.17.0 is a feature release with several improvements, including: - A helpful compliance change to RSA signatures on certificates - An easier way to specify passwords for [PKCS#12](https://github.com/PKCS/cert-manager/issues/12) and JKS keystores - A few feature flag promotions (and a deprecation) - Dependency bumps and other smaller improvements #### Major Themes ##### RSA Certificate Compliance The United States Department of Defense published [a memo](https://dl.dod.cyber.mil/wp-content/uploads/pki-pke/pdf/unclass-memo_dodcryptoalgorithms.pdf) in 2022 which introduced some requirements on the kinds of cryptography they require to be supported in software they use. In effect, the memo requires that software be able to support larger RSA keys (3072-bit and 4096-bit) and hashing algorithms (SHA-384 at a minimum). cert-manager supported large RSA keys long before the memo was published, but a quirk in implementation meant that cert-manager always used SHA-256 when signing with RSA. In v1.17.0, cert-manager will choose a hash algorithm based on the RSA key length: 3072-bit keys will use SHA-384, and 4096-bit keys will use SHA-512. This matches similar behavior already present for ECDSA signatures. Our expectation is that this change will have minimal impact beyond a slight increase to security and better compliance; we're not aware of Kubernetes based environments which support RSA 2048 with SHA-256 but fail with RSA 4096 and SHA-512. However, if you're using larger RSA keys, you should be aware of the change. ##### Easier Keystore Passwords for [PKCS#12](https://github.com/PKCS/cert-manager/issues/12) and JKS Specifying passwords on [PKCS#12](https://github.com/PKCS/cert-manager/issues/12) and JKS keystores is supported in cert-manager for compatibility reasons with software which expects or requires passwords to be set; however, these passwords are [not relevant to security](https://cert-manager.io/docs/faq/#why-are-passwords-on-jks-or-pkcs12-files-not-helpful) and never have been in cert-manager. The initial implementation of the `keystores` feature required these "passwords" to be stored in a Kubernetes secret, which would then be read by cert-manager when creating the keystore after a certificate was issued. This is cumbersome, especially when many passwords are set to default values such as `changeit` or `password`. In cert-manager v1.17, it's now possible to set a keystore password using a literal string value inside the `Certificate` resource itself, making this process much easier with no change to security. For example: ```yaml apiVersion: cert-manager.io/v1 kind: Certificate metadata: name: my-cert-password spec: secretName: my-cert-password issuerRef: name: my-issuer kind: ClusterIssuer keystores: jks: create: true password: "abc123" pkcs12: create: true password: "password" dnsNames: - example.com ``` The new `password` field is mutually exclusive with the `passwordSecretRef` field, so be sure to only set one. ##### Feature Flag Promotions / Deprecations cert-manager's feature flags allow for easier testing and adoption of new features with a reduced risk of breaking changes. In cert-manager v1.17, two feature gates have been promoted to "beta", and as such are now enabled by default in all installations: - `NameConstraints`, allowing users to specify the name constraints extension which can be helpful when creating CA certificates for private PKI - `UseDomainQualifiedFinalizer`, which stops a Kubernetes warning from being printed in logs In addition, we added a new feature gate: `CAInjectorMerging`, which intelligently combines certificates used by the [`CAInjector`](../../concepts/ca-injector.md) component, making it safer to use when issuing certificates are rotated. If you're making heavy use of the CA injector, you should consider enabling this feature gate. Finally, we deprecated the `ValidateCAA` feature gate which will be removed entirely in cert-manager v1.18.0. This feature gate aimed to validate the `CAA` DNS record during ACME issuance, but has seen low adoption and limited testing since its introduction back in 2019. ##### Other Changes There are many other PRs which were merged in this release cycle and we'd encourage you to read the release notes below. One PR that's worth highlighting is a change to add more structured logging information to certain log lines. If you were previously filtering logs using `grep` or similar tools (which is highly discouraged!) be aware that some log lines have changed format. #### Community As always, we'd like to thank all of the community members who helped in this release cycle, including all below who merged a PR and anyone that helped by commenting on issues, testing, or getting involved in cert-manager meetings. We're lucky to have you involved. A special thanks to: - [@​hawksight](https://github.com/hawksight) - [@​aidy](https://github.com/aidy) - [@​bashlion](https://github.com/bashlion) - [@​7ing](https://github.com/7ing) - [@​fadecore](https://github.com/fadecore) - [@​schedin](https://github.com/schedin) - [@​jkroepke](https://github.com/jkroepke) - [@​sdarwin](https://github.com/sdarwin) for their contributions, comments and support! Also, thanks to the cert-manager maintainer team for their help in this release: - [@​inteon](https://github.com/inteon) - [@​erikgb](https://github.com/erikgb) - [@​SgtCoDFish](https://github.com/SgtCoDFish) - [@​ThatsMrTalbot](https://github.com/ThatsMrTalbot) - [@​munnerz](https://github.com/munnerz) - [@​maelvls](https://github.com/maelvls) And finally, thanks to the cert-manager steering committee for their feedback in this release cycle: - [@​FlorianLiebhart](https://github.com/FlorianLiebhart) - [@​ssyno](https://github.com/ssyno) - [@​ianarsenault](https://github.com/ianarsenault) - [@​TrilokGeer](https://github.com/TrilokGeer) #### Changes by Kind ##### Feature - Potentially BREAKING: The CA and SelfSigned issuers now use SHA-512 when signing with RSA keys 4096 bits and above, and SHA-384 when signing with RSA keys 3072 bits and above. If you were previously using a larger RSA key as a CA, be sure to check that your systems support the new hash algorithms. ([#​7368](https://github.com/cert-manager/cert-manager/issues/7368), [@​SgtCoDFish](https://github.com/SgtCoDFish)) - Add CAInjectorMerging feature gate to the ca-injector, enabling this will change the behaviour of the ca-injector to merge in new CA certificates instead of outright replacing the existing one. ([#​7469](https://github.com/cert-manager/cert-manager/issues/7469), [@​ThatsMrTalbot](https://github.com/ThatsMrTalbot)) - Added image pull secrets to deployments when service accounts aren't created ([#​7411](https://github.com/cert-manager/cert-manager/issues/7411), [@​TheHenrick](https://github.com/TheHenrick)) - Added the ability to customize client ID when using username/password authentication for Venafi client ([#​7484](https://github.com/cert-manager/cert-manager/issues/7484), [@​ilyesAj](https://github.com/ilyesAj)) - Helm: New value `webhook.extraEnv` allows you to set custom environment variables in the webhook Pod. Helm: New value `cainjector.extraEnv` allows you to set custom environment variables in the cainjector Pod. Helm: New value `startupapicheck.extraEnv` allows you to set custom environment variables in the startupapicheck Pod. ([#​7317](https://github.com/cert-manager/cert-manager/issues/7317), [@​wallrj](https://github.com/wallrj)) - Increase the amount of PEM data `pki.DecodeX509CertificateSetBytes` is able to parse, to enable reading larger TLS trust bundles ([#​7464](https://github.com/cert-manager/cert-manager/issues/7464), [@​SgtCoDFish](https://github.com/SgtCoDFish)) - New configuration option tenantID for the AzureDNS provider when using managed identities with service principals. This enhancement allows users to specify the tenant ID when using managed identities, offering better flexibility in multi-tenant environments. ([#​7376](https://github.com/cert-manager/cert-manager/issues/7376), [@​jochenrichter](https://github.com/jochenrichter)) - Promote the `UseDomainQualifiedFinalizer` feature to Beta. ([#​7488](https://github.com/cert-manager/cert-manager/issues/7488), [@​jsoref](https://github.com/jsoref)) - Allow JKS/PKCS12 keystore passwords to be set as literal values in Certificate resources, mutually exclusive with the existing passwordSecretRef field ([#​6657](https://github.com/cert-manager/cert-manager/issues/6657), [@​rquinio1A](https://github.com/rquinio1A)) - Allow templating ServiceAccount annotations by running the built-in Helm `tpl` function on keys and values, to aid with workload identity configuration ([#​7501](https://github.com/cert-manager/cert-manager/issues/7501), [@​fcrespofastly](https://github.com/fcrespofastly)) - Promote CA NameConstraints feature gate to Beta (enabled by default) ([#​7494](https://github.com/cert-manager/cert-manager/issues/7494), [@​tanujd11](https://github.com/tanujd11)) ##### Documentation - Add example for IPv6 in `--dns01-recursive-nameservers` ([#​7367](https://github.com/cert-manager/cert-manager/issues/7367), [@​SgtCoDFish](https://github.com/SgtCoDFish)) - Updated the chart documentation to show `enableGatewayAPI` in the config example. ([#​7354](https://github.com/cert-manager/cert-manager/issues/7354), [@​puerco](https://github.com/puerco)) ##### Bug or Regression - BUGFIX: A change in v1.16.0 caused cert-manager's ACME ClusterIssuer to look in the wrong namespace for resources required for the issuance (eg. credential Secrets). This is now fixed in v1.16.1+ and v1.17.0+ ([#​7339](https://github.com/cert-manager/cert-manager/issues/7339), [@​inteon](https://github.com/inteon)) - BUGFIX: Helm will now accept percentages for the `podDisruptionBudget.minAvailable` and `podDisruptionBudget.maxAvailable` values. ([#​7343](https://github.com/cert-manager/cert-manager/issues/7343), [@​inteon](https://github.com/inteon)) - Fix ACME HTTP-01 solver for IPv6 endpoints ([#​7391](https://github.com/cert-manager/cert-manager/issues/7391), [@​Peac36](https://github.com/Peac36)) - Fix the behavior of `renewBeforePercentage` to comply with its spec ([#​7421](https://github.com/cert-manager/cert-manager/issues/7421), [@​adam-sroka](https://github.com/adam-sroka)) - Helm: allow `enabled` to be set as a value to toggle cert-manager as a dependency. ([#​7350](https://github.com/cert-manager/cert-manager/issues/7350), [@​inteon](https://github.com/inteon)) - SECURITY (low risk): Limit maximum allowed PEM size to prevent potential DoS in cert-manager controller from attacker-controlled PEM. See [GHSA-r4pg-vg54-wxx4](https://github.com/cert-manager/cert-manager/security/advisories/GHSA-r4pg-vg54-wxx4) ([#​7400](https://github.com/cert-manager/cert-manager/issues/7400), [@​SgtCoDFish](https://github.com/SgtCoDFish)) - The Certificate object will no longer create CertificateRequest or Secret objects while being deleted ([#​7361](https://github.com/cert-manager/cert-manager/issues/7361), [@​ThatsMrTalbot](https://github.com/ThatsMrTalbot)) - The issuer will now more quickly retry when its linked Secret is updated to fix an issue that caused a high back-off timeout. ([#​7455](https://github.com/cert-manager/cert-manager/issues/7455), [@​inteon](https://github.com/inteon)) - Upgrades Venafi vCert library fixing a bug which caused the RSA 3072 bit key size for TPP certificate enrollment to not work. ([#​7498](https://github.com/cert-manager/cert-manager/issues/7498), [@​inteon](https://github.com/inteon)) ##### Other (Cleanup or Flake) -
⚠️ Potentially BREAKING: Log messages that were not structured have now been replaced with structured logs. If you were matching on specific log strings, this could break your setup. ([#​7461](https://github.com/cert-manager/cert-manager/issues/7461), [@​inteon](https://github.com/inteon)) - DEPRECATION: The `ValidateCAA` feature gate is now deprecated, with removal scheduled for cert-manager 1.18. In 1.17, enabling this feature gate will print a warning. ([#​7491](https://github.com/cert-manager/cert-manager/issues/7491), [@​jsoref](https://github.com/jsoref)) - Remove `Neither --kubeconfig nor --master was specified` warning message when the controller and the webhook services boot ([#​7457](https://github.com/cert-manager/cert-manager/issues/7457), [@​Peac36](https://github.com/Peac36)) - Move 'live' DNS tests into a separate package to contain test flakiness and improve developer UX ([#​7530](https://github.com/cert-manager/cert-manager/issues/7530), [@​SgtCoDFish](https://github.com/SgtCoDFish)) ### [`v1.16.4`](https://github.com/cert-manager/cert-manager/compare/v1.16.3...v1.16.4) [Compare Source](https://github.com/cert-manager/cert-manager/compare/v1.16.3...v1.16.4) ### [`v1.16.3`](https://github.com/cert-manager/cert-manager/releases/tag/v1.16.3) [Compare Source](https://github.com/cert-manager/cert-manager/compare/v1.16.2...v1.16.3) cert-manager is the easiest way to automatically manage certificates in Kubernetes and OpenShift clusters. v1.16.3 is a patch release mainly focused around bumping dependencies to address reported CVEs: CVE-2024-45337 and CVE-2024-45338. We don't believe that cert-manager is actually vulnerable; this release is instead intended to satisfy vulnerability scanners. It also includes a bug fix to the new `renewBeforePercentage` field. If you were using `renewBeforePercentage`, see PR [#​7421](https://github.com/cert-manager/cert-manager/issues/7421) for more information. #### Changes ##### Bug - Bump `golang.org/x/net` and `golang.org/x/crypto` to address CVE-2024-45337 and CVE-2024-45338 ([#​7485](https://github.com/cert-manager/cert-manager/issues/7485), [@​erikgb](https://github.com/erikgb)) - Fix the behaviour of `renewBeforePercentage` to comply with its spec ([#​7441](https://github.com/cert-manager/cert-manager/issues/7441), [@​cert-manager-bot](https://github.com/cert-manager-bot)) ##### Other - Bump go to 1.23.4 ([#​7489](https://github.com/cert-manager/cert-manager/issues/7489), [@​erikgb](https://github.com/erikgb)) - Bump base images to latest available ([#​7508](https://github.com/cert-manager/cert-manager/issues/7508), [@​SgtCoDFish](https://github.com/SgtCoDFish)) </details> <details> <summary>helm/chart-releaser-action (helm/chart-releaser-action)</summary> ### [`v1.7.0`](https://github.com/helm/chart-releaser-action/releases/tag/v1.7.0) [Compare Source](https://github.com/helm/chart-releaser-action/compare/v1.6.0...v1.7.0) For `cr` changes see https://github.com/helm/chart-releaser/releases/tag/v1.7.0 ##### What's Changed - Add --skip-upload input with latest helm/chart-releaser-action by [@​acuD1](https://github.com/acuD1) in [https://github.com/helm/chart-releaser-action/pull/143](https://github.com/helm/chart-releaser-action/pull/143) - Update checkout action to v4 tag in README.md by [@​maarten-blokker](https://github.com/maarten-blokker) in [https://github.com/helm/chart-releaser-action/pull/187](https://github.com/helm/chart-releaser-action/pull/187) - Fix indention by [@​3schwartz](https://github.com/3schwartz) in [https://github.com/helm/chart-releaser-action/pull/203](https://github.com/helm/chart-releaser-action/pull/203) - update cr to v1.7.0 by [@​cpanato](https://github.com/cpanato) in [https://github.com/helm/chart-releaser-action/pull/220](https://github.com/helm/chart-releaser-action/pull/220) ##### New Contributors - [@​acuD1](https://github.com/acuD1) made their first contribution in [https://github.com/helm/chart-releaser-action/pull/143](https://github.com/helm/chart-releaser-action/pull/143) - [@​maarten-blokker](https://github.com/maarten-blokker) made their first contribution in [https://github.com/helm/chart-releaser-action/pull/187](https://github.com/helm/chart-releaser-action/pull/187) - [@​3schwartz](https://github.com/3schwartz) made their first contribution in [https://github.com/helm/chart-releaser-action/pull/203](https://github.com/helm/chart-releaser-action/pull/203) **Full Changelog**: helm/chart-releaser-action@v1...v1.7.0 </details> <details> <summary>helm/chart-testing-action (helm/chart-testing-action)</summary> ### [`v2.7.0`](https://github.com/helm/chart-testing-action/releases/tag/v2.7.0) [Compare Source](https://github.com/helm/chart-testing-action/compare/v2.6.1...v2.7.0) For `ct` change see https://github.com/helm/chart-testing/releases/tag/v3.12.0 #### What's Changed - docs: update all version references to latest versions by [@​froblesmartin](https://github.com/froblesmartin) in [https://github.com/helm/chart-testing-action/pull/141](https://github.com/helm/chart-testing-action/pull/141) - update ct to v3.11.0 / yamlint to 1.33.0 / yamale to 4.0.4 / add e2e test by [@​cpanato](https://github.com/cpanato) in [https://github.com/helm/chart-testing-action/pull/144](https://github.com/helm/chart-testing-action/pull/144) - use ct 3.12.0 as default by [@​cpanato](https://github.com/cpanato) in [https://github.com/helm/chart-testing-action/pull/165](https://github.com/helm/chart-testing-action/pull/165) - clean up and fix cr action next release by [@​cpanato](https://github.com/cpanato) in [https://github.com/helm/chart-testing-action/pull/166](https://github.com/helm/chart-testing-action/pull/166) #### New Contributors - [@​froblesmartin](https://github.com/froblesmartin) made their first contribution in [https://github.com/helm/chart-testing-action/pull/141](https://github.com/helm/chart-testing-action/pull/141) **Full Changelog**: helm/chart-testing-action@v2.6.1...v2.7.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/komailo/helm-charts). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjcuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE2Ny4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJtaW5vciJdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>Configuration menu - View commit details
-
Copy full SHA for 55058be - Browse repository at this point
Copy the full SHA 55058beView commit details -
Configuration menu - View commit details
-
Copy full SHA for d26416c - Browse repository at this point
Copy the full SHA d26416cView commit details
Loading
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 979fc4b...d26416c