Releases: cert-manager/cert-manager
v1.12.0
cert-manager is the easiest way to automatically manage certificates in Kubernetes and OpenShift clusters.
cert-manager v1.12 brings support for JSON logging, a lower memory footprint, support for ephemeral service account tokens with Vault, improved dependency management and support for the ingressClassName field.
The full release notes are available at https://cert-manager.io/docs/release-notes/release-notes-1.12.
Community
Thanks again to all open-source contributors with commits in this release, including:
- @malovme
- @e96wic
- @ExNG
- @waterfoul
- @jkroepke
- @andrewsomething
- @yulng
- @tobotg
- @maumontesilva
- @avi-08
- @vinzent
- @TrilokGeer
- @g-gaston
- @james-callahan
- @lucacome
- @yanggangtony
- @vidarno
- @ctrought
- @Robfz
- @dsonck92
- @rayandas
- @olekfur
- @ptrc-n
- @bradjones1
- @gdvalle
Thanks also to the following cert-manager maintainers for their contributions during this release:
Equally thanks to everyone who provided feedback, helped users and raised issues on Github and Slack, joined our meetings and talked to us at Kubecon!
Special thanks to @erikgb for continuously great input and feedback and to @lucacome for always ensuring that our kube deps are up to date!
Thanks also to the CNCF, which provides resources and support, and to the AWS open source team for being good community members and for their maintenance of the PrivateCA Issuer.
In addition, massive thanks to Jetstack (by Venafi) for contributing developer time and resources towards the continued maintenance of cert-manager projects.
Changes by Kind
Feature
- POTENTIALLY BREAKING: the cert-manager binaries and some tests have been split into separate Go modules, allowing them to be easily patched independently. This should have no impact if you simply run cert-manager in your cluster. If you import cert-manager binaries, integration tests or end-to-end tests in Go, you may need to make code changes in response to this. See https://cert-manager.io/docs/contributing/importing/ for more details. (#5880, @SgtCoDFish)
- Added support for JSON logging (using --logging-format=json) (#5828, @malovme)
- Added the
--concurrent-workersflag that lets you control the number of concurrent workers for each of our controllers. (#5936, @inteon) - Adds
acme.solvers.http01.ingress.podTemplate.spec.imagePullSecretsfield to issuer spec to allow to specify image pull secrets for the ACME HTTP01 solver pod. (#5801, @malovme) - Cainjector:
- New flags were added to the cainjector binary. They can be used to modify what injectable kinds are enabled. If cainjector is only used as a cert-manager's internal component it is sufficient to only enable validatingwebhookconfigurations and mutatingwebhookconfigurations injectable resources; disabling the rest can improve memory consumption. By default all are enabled.
- The
--watch-certsflag was renamed to--enable-certificates-data-source. (#5766, @irbekrm)
- Helm: Added PodDisruptionBudgets for cert-manager components to the Helm chart (disabled by default). (#3931, @e96wic)
- Helm: Egress 6443/TCP is now allowed in the webhook. This is required for OpenShift and OKD clusters for which the Kubernetes API server listens on port 6443 instead of 443. (#5788, @ExNG)
- Helm: you can now add volumes and volume mounts via Helm variables for the cainjector, webhook, and startupapicheck. (#5668, @waterfoul)
- Helm: you can now enable the flags
--dns01-recursive-nameservers,--enable-certificate-owner-ref, and--dns01-recursive-nameservers-onlythrough Helm values. (#5614, @jkroepke) - The DigitalOcean issuer now sets a cert-manager user agent string. (#5869, @andrewsomething)
- The HTTP-01 solver can now be configured to create Ingresses with an
ingressClassName. The credit goes to @dsonck92 for implementing the initial PR. (#5849, @maelvls) - The Vault issuer can now be used with ephemeral Kubernetes tokens. With the new
serviceAccountReffield, cert-manager generates a short-lived token associated to the service account to authenticate to Vault. Along with this new feature, we have added validation logic in the webhook in order to check thevault.authfield when creating an Issuer or ClusterIssuer. Previously, it was possible to create an Issuer or ClusterIssuer with an invalid value forvault.auth. (#5502, @maelvls) - The cert-manager controller container of the controller Pod now has a
/livezendpoint and a default liveness probe, which fails if leader election has been lost and for some reason the process has not exited. The liveness probe is disabled by default. (#5962, @wallrj) - Upgraded Gateway API to v0.6.0. (#5768, @yulng)
- Webhook now logs requests to mutating/validating webhook (with
--v=5flag) (#5975, @tobotg)
Design
- Certificate issuances are always failed (and retried with a backoff) for denied or invalid CertificateRequests.
This is not necessarily a breaking change as due to a race condition this may already have been the case. (#5887, @irbekrm) - The cainjector controller can now use server-side apply to patch mutatingwebhookconfigurations, validatingwebhookconfigurations, apiservices, and customresourcedefinitions. This feature is currently in alpha and is not enabled by default. To enable server-side apply for the cainjector, add the flag --feature-gates=ServerSideApply=true to the deployment. (#5991, @inteon)
Documentation
- Helm: the dead links in
values.yamlare now working (#5999, @SgtCoDFish)
Bug or Regression
- Cmctl renew now prints an error message unless Certificate name(s) or --all are supplied (#5896, @maumontesilva)
- Cmctl: In order work around a hardcoded Kubernetes version in Helm, we now use a fake kube-apiserver version when generating the helm template when running
cmctl x install. (#5720, @irbekrm) - Fix development environment and go vendoring on Linux arm64. (#5810, @SgtCoDFish)
- Fix ordering of remote git tags when preparing integration tests (#5910, @SgtCoDFish)
- Helm: the flag
--acme-http01-solver-imagegiven to the variableacmesolver.extraArgsnow has precedence over the variableacmesolver.image. (#5693, @SgtCoDFish) - Ingress and Gateway resources will not be synced if deleted via foreground cascading. (#5878, @avi-08)
- The auto-retry mechanism added in VCert 4.23.0 and part of cert-manager 1.11.0 (#5674) has been found to be faulty. Until this issue is fixed upstream, we now use a patched version of VCert. This patch will slowdown the issuance of certificates by 9% in case of heavy load on TPP. We aim to release at an ulterior date a patch release of cert-manager to fix this slowdown. (#5805, @inteon)
- Upgrade to go 1.19.6 along with newer helm and containerd versions and updated base images (#5813, @SgtCoDFish)
- When using the
jksandpkcs12fields on a Certificate resource with a CA issuer that doesn't set theca.crtin the Secret resource, cert-manager no longer loop trying to copyca.crtintotruststore.jksortruststore.p12. (#5972, @vinzent) - When using the
literalSubjectfield on a Certificate resource, the IPs, URIs, DNS names, and email addresses segments are now properly compare...
v1.12.0-beta.2
Changelog since v1.12.0-beta.1
Changes by Kind
Other (Cleanup or Flake)
- Enable cmctl to be imported by third parties (#6050, @jetstack-bot)
v1.12.0-beta.1
v1.12.0-beta.1
Changelog since v1.12.0-beta.0
Changes by Kind
Feature
- Added support for json logging (using --logging-format=json) (#5828, @malovme)
- The cert-manager controller container of the controller Pod now has a /livez endpoint and a default liveness probe, which fails if leader election has been lost and for some reason the process has not exited. The liveness probe is disabled by default. (#5962, @wallrj)
- Webhook now logs requests to mutating/validating webhook (with
--v=5flag) (#5975, @tobotg)
Design
- ServerSideApply: The feature gate
ServerSideApply=trueconfigures the ca-injector controller to use Kubernetes Server Side Apply on CA Injector injectable target resources. (#5991, @inteon)
Documentation
- Fixes broken reference links in Helm chart values.yaml (#5999, @SgtCoDFish)
Bug or Regression
- Adds missing comparisons for certain fields which were incorrectly skipped if a LiteralSubject was set (#5747, @inteon)
- Check JKS/PKCS12 truststore in Secrets only if issuer provides the CA (#5972, @vinzent)
Other (Cleanup or Flake)
- Caches metadata only for filtered Pods and Services (#5976, @irbekrm)
- Storing the latest private key hash on issuer status prevents unnecessary calls to ACME server during controller startup (#6006, @vidarno)
- Tests on Kubernetes v1.27.1 by default. (#5979, @irbekrm)
- Updates Kubernetes libraries to
v0.27.1. (#5961, @lucacome)
Uncategorized
- Replaces our python boilerplate checker with an installed golang version, removing the need to have Python installed when developing or building cert-manager (#6000, @SgtCoDFish)
v1.11.2
Changelog since v1.11.1
Changes by Kind
Bug or Regression
- Build with go 1.19.9 (#6014, @SgtCoDFish)
Other (Cleanup or Flake)
-
Bumps Docker libraries to fix vulnerability scan alert for CVE-2023-28840, CVE-2023-28841, CVE-2023-28842 (#6037, @irbekrm)
Cert-manager was not actually affected by these CVEs which are all to do with Docker daemon's overlay network. -
Bumps Kube libraries v0.26.0 -> v0.26.4 (#6038, @irbekrm)
This might help with running cert-manager v1.11 on Kubernetes v1.27, see #6038
v1.12.0-beta.0
v1.12.0-beta.0
Changelog since v1.12.0-alpha.2
Changes by Kind
Feature
- Added PodDisruptionBudgets for cert-manager components to the Helm chart (disabled by default). (#3931, @e96wic)
- Added the --concurrent-workers flag that lets you control the number of concurrent workers for each of our controllers. (#5936, @inteon)
- Cainjector:
- adds a couple new flags to cainjector that can be used to modify what injectable kinds are enabled. If cainjector is only used as a cert-manager's internal component it is sufficient to only enable validatingwebhookconfigurations and mutatingwebhookconfigurations injectables- disabling the rest can improve memory consumption. By default all are enabled.
- renames --watch-certs flag to --enable-certificates-data-source (#5766, @irbekrm)
Other (Cleanup or Flake)
- ACME account registration is now re-verified if account key is manually changed. (#5949, @TrilokGeer)
- Add
make go-workspacetarget for generating a go.work file for local development (#5935, @SgtCoDFish) - Bump the distroless base images (#5929, @maelvls)
- Ensures that annotations, labels and managed fields are not cached for partial metadata
Secrets. (#5966, @irbekrm) - Filters Secret caching to ensure only relevant Secrets are cached in full. This should reduce controller's memory consumption in clusters with a large number of cert-manager unrelated
Secretresources. The filtering functionality is currently placed behindSecretsFilteredCachingfeature flag.
The filtering mechanism might, in some cases, slightly slow down issuance or cause additional requests to kube apiserver, because unlabelledSecrets that cert-manager controller needs will now be retrieved from kube apiserver instead of being cached locally. To prevent this from happening, users can label all issuerSecrets withcontroller.cert-manager.io/fao: truelabel. (#5824, @irbekrm) - Updates Kubernetes libraries to
v0.26.3. (#5907, @lucacome) - Upgrade to Go 1.20 (#5969, @wallrj)
- Validates that
certificate.spec.secretNameis a validSecretname (#5967, @avi-08)
v1.11.1
cert-manager is the easiest way to automatically manage certificates in Kubernetes and OpenShift clusters.
In v1.11.1, we updated the base images used for cert-manager containers. In addition, the users of the Venafi issuer will see less certificates repeatedly failing.
If you are a user of Venafi TPP and have been having issues with the error message This certificate cannot be processed while it is in an error state. Fix any errors, and then click Retry, please use this version.
Changes since v1.11.0
Bug or Regression
- Bump helm and other dependencies to fix CVEs, along with upgrading go and base images (#5815, @SgtCoDFish)
- Bump the distroless base images (#5930, @maelvls)
- The auto-retry mechanism added in VCert 4.23.0 and part of cert-manager 1.11.0 (#5674) has been found to be faulty. Until this issue is fixed upstream, we now use a patched version of VCert. This patch will slowdown the issuance of certificates by 9% in case of heavy load on TPP. We aim to release at an ulterior date a patch release of cert-manager to fix this slowdown. (#5819, @maelvls)
- Use a fake-kube apiserver version when generating helm template in
cmctl x install, to work around a hardcoded Kubernetes version in Helm. (#5726, @SgtCoDFish)
Other (Cleanup or Flake)
- Bump keystore-go to v4.4.1 to work around an upstream rewrite of history (#5730, @SgtCoDFish)
v1.12.0-alpha.2
Changes since v1.12.0-alpha.1
Feature
- POTENTIALLY BREAKING: Separates cert-manager binaries and some tests into separate go modules, allowing them to be easily patched independently. This should have no impact if you simply run cert-manager in your cluster. If you import cert-manager binaries, integration tests or end-to-end tests in Golang, you may need to make code changes in response to this. See https://cert-manager.io/docs/contributing/importing/ for more details (#5880, @SgtCoDFish)
Bug or Regression
- Fix ordering of remote git tags when preparing integration tests (#5910, @SgtCoDFish)
Other (Cleanup or Flake)
- Reduces the amount of ACME calls during an ACME certificate issuance.
Warning: this PR slightly changes howChallengenames are calculated. To avoid duplicate issuances due toChallenges being recreated, ensure that there is no in-progress ACME certificate issuance when you upgrade to this version of cert-manager. (#5901, @irbekrm)
v1.12.0-alpha.1
Changes since v1.12.0-alpha.0
Feature
- Adds
acme.solvers.http01.ingress.podTemplate.spec.imagePullSecretsfield to issuer spec to allow to specify image pull secrets for the ACME HTTP01 solver pod. (#5801, @malovme) - The DigitalOcean issuer now sets a cert-manager user agent string. (#5869, @andrewsomething)
- The HTTP-01 solver can now be configured to create Ingresses with an
ingressClassName. The credit goes to @dsonck92 for implementing the initial PR. (#5849, @maelvls) - Upgraded Gateway API to v0.6.0. (#5768, @yulng)
Design
- Certificate issuances are always failed (and retried with a backoff) for denied or invalid CertificateRequests.
This is not necessarily a breaking change as due to a race condition this may already have been the case. (#5887, @irbekrm)
Bug or Regression
- Cmctl renew now prints an error message unless Certificate name(s) or --all are supplied (#5896, @maumontesilva)
- Fix development environment and go vendoring on Linux ARM64. (#5810, @SgtCoDFish)
- Ingress and Gateway resources will not be synced if deleted via foreground cascading. (#5878, @avi-08)
- The auto-retry mechanism added in VCert 4.23.0 and part of cert-manager 1.11.0 (#5674) has been found to be faulty. Until this issue is fixed upstream, we now use a patched version of VCert. This patch will slowdown the issuance of certificates by 9% in case of heavy load on TPP. We aim to release at an ulterior date a patch release of cert-manager to fix this slowdown. (#5805, @inteon)
- Upgrade to go 1.19.6 along with newer helm and containerd versions and updated base images (#5813, @SgtCoDFish)
Other (Cleanup or Flake)
- Added a Makefile target to build a standalone E2E test binary: make e2e-build (#5804, @wallrj)
- Updates Kubernetes libraries to
v0.26.2. (#5820, @lucacome) - Updates base images (#5832, @irbekrm)
Uncategorized
v1.11.1-beta.0
If you are a user of Venafi TPP and have been having issues with the error message This certificate cannot be processed while it is in an error state. Fix any errors, and then click Retry, please try this version.
Changes since v1.11.0
Bug or Regression
- The auto-retry mechanism added in VCert 4.23.0 and part of cert-manager 1.11.0 (#5674) has been found to be faulty. Until this issue is fixed upstream, we now use a patched version of VCert. This patch will slowdown the issuance of certificates by 9% in case of heavy load on TPP. We aim to release at an ulterior date a patch release of cert-manager to fix this slowdown. (#5819, @maelvls)
- Use a fake kube apiserver version when generating helm template in
cmctl x install, to work around a hardcoded Kubernetes version in Helm. (#5726, @SgtCoDFish) - Bump helm and other dependencies to fix CVEs, along with upgrading go and base images (#5815, @SgtCoDFish)
Other
- Bump keystore-go to v4.4.1 to work around an upstream rewrite of history (#5730, @SgtCoDFish)
v1.12.0-alpha.0
cert-manager is the easiest way to automatically manage certificates in Kubernetes and OpenShift clusters.
v1.12.0-alpha.0 is a pre-release alpha version intended for testing. It might not be suitable for production uses.
Changes since v1.11.0
Feature
- Helm: you can now add volumes and volumeMounts via Helm variables for the cainjector, webhook, and startupapicheck. (#5668, @waterfoul)
- The Vault issuer can now be used with ephemeral Kubernetes tokens. With the new
serviceAccountReffield, cert-manager generates a short-lived token associated to the service account to authenticate to Vault. Along with this new feature, we have added validation logic in the webhook in order to check thevault.authfield when creating an Issuer or ClusterIssuer. Previously, it was possible to create an Issuer or ClusterIssuer with an invalid value forvault.auth. (#5502, @maelvls) - Helm: you can now enable the flags
--dns01-recursive-nameservers,--enable-certificate-owner-ref, and--dns01-recursive-nameservers-onlythrough Helm values. (#5614, @jkroepke)
Bug or Regression
- Helm: the flag
--acme-http01-solver-imagegiven to the variableacmesolver.extraArgsnow has precedence over the variableacmesolver.image. (#5693, @SgtCoDFish) - Use a fake kube apiserver version when generating helm template in
cmctl x install, to work around a hardcoded Kubernetes version in Helm. (#5720, @irbekrm)
Other (Cleanup or Flake)
- Bump keystore-go to v4.4.1 to work around an upstream rewrite of history (#5724, @g-gaston)
- Bumps base images (#5793, @irbekrm)
- Cainjector memory improvements: removes second cache of secrets, CRDs, validating/mutatingwebhookconfigurations and APIServices that should reduce memory consumption by about half. BREAKING: users who are relying on cainjector to work when
certificates.cert-manager.ioCRD is not installed in the cluster, now need to pass--watch-certificates=falseflag to cainjector else it will not start.
Users who only use cainjector as cert-manager's internal component and have a large number ofCertificateresources in cluster can pass--watch-certificates=falseto avoid cainjector from cachingCertificateresources and save some memory. (#5746, @irbekrm) - Cainjector now only reconciles annotated objects of injectable kind. (#5764, @irbekrm)
- Upgrade to go 1.19.5 (#5712, @yanggangtony)
certificate.spec.secretNameSecrets will now be labelled withcontroller.cert-manager.io/faolabel (#5660, @irbekrm)
Uncategorized
- Container images are have an OCI source label (#5722, @james-callahan)
- Disable automountServiceAccountToken in the ACME HTTP01 solver Pod (#5754, @wallrj)