-
Notifications
You must be signed in to change notification settings - Fork 342
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1298 from inteon/upgrade_notes_1.13
Add upgrade notes for 1.13
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
content/docs/installation/upgrading/upgrading-1.12-1.13.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
title: Upgrading from v1.12 to v1.13 | ||
description: 'cert-manager installation: Upgrading v1.12 to v1.13' | ||
--- | ||
|
||
When upgrading cert-manager from 1.12 to 1.13, in few cases you might need to take additional steps to ensure a smooth upgrade: | ||
|
||
1. BREAKING: If you deploy cert-manager using helm and have `.featureGates` value set, the features defined | ||
there will no longer be passed to cert-manager webhook, only to cert-manager controller. Use `webhook.featureGates` field | ||
instead to define features to be enabled on webhook. (https://github.com/cert-manager/cert-manager/pull/6093, https://github.com/irbekrm) | ||
|
||
2. Potentially breaking: If you were, for some reason, passing cert-manager controller's features to webhook's --feature-gates flag, | ||
this will now break (unless the webhook actually has a feature by that name). (https://github.com/cert-manager/cert-manager/pull/6093, https://github.com/irbekrm) | ||
|
||
3. Potentially breaking: Webhook validation of CertificateRequest resources is stricter now: all `KeyUsages` and `ExtendedKeyUsages` must be defined directly in the CertificateRequest resource, the encoded CSR can never contain more usages that defined there. (https://github.com/cert-manager/cert-manager/pull/6182, https://github.com/inteon) | ||
|
||
## Next Steps | ||
|
||
From here on you can follow the [regular upgrade process](./README.md). |