-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Add upgrade warnings #19061
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add upgrade warnings #19061
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -21,6 +21,13 @@ After Consul 1.17.0, only timestamps will be included in rotated log file names. | |
|
|
||
| ## Consul 1.16.x | ||
|
|
||
| #### Vault Enterprise as CA | ||
| Using Vault as CA with Consul version 1.16.2 will fail to initialize the CA if [`namespace`](/consul/docs/connect/ca/vault#namespace) is set | ||
| but [`intermediate_pki_namespace`](/consul/docs/connect/ca/vault#intermediatepkinamespace) or [`root_pki_namespace`](/consul/docs/connect/ca/vault#rootpkinamespace) | ||
| are empty. This is a bug which will be fixed in a future version. | ||
| To work around this issue, users must explicitly set [`intermediate_pki_namespace`](/consul/docs/connect/ca/vault#intermediatepkinamespace) and | ||
|
kisunji marked this conversation as resolved.
|
||
| [`root_pki_namespace`](/consul/docs/connect/ca/vault#rootpkinamespace) to the same value as [`namespace`](/consul/docs/connect/ca/vault#namespace). | ||
|
|
||
| #### Known issues | ||
|
|
||
| Service mesh in Consul versions 1.16.0 and 1.16.1 may have issues when a snapshot restore is performed and the servers are hosting xDS streams. | ||
|
|
@@ -44,6 +51,14 @@ This change removes the backward-compatibility behavior introduced in Consul 1.1 | |
|
|
||
| ## Consul 1.15.x | ||
|
|
||
| #### Vault Enterprise as CA | ||
| Using Vault as CA with Consul version 1.15.6 will fail to initialize the CA if [`namespace`](/consul/docs/connect/ca/vault#namespace) is set | ||
| but [`intermediate_pki_namespace`](/consul/docs/connect/ca/vault#intermediatepkinamespace) or [`root_pki_namespace`](/consul/docs/connect/ca/vault#rootpkinamespace) | ||
| are empty. This is a bug which will be fixed in a future version. | ||
|
|
||
|
kisunji marked this conversation as resolved.
Outdated
|
||
| To work around this issue, users must explicitly set [`intermediate_pki_namespace`](/consul/docs/connect/ca/vault#intermediatepkinamespace) and | ||
| [`root_pki_namespace`](/consul/docs/connect/ca/vault#rootpkinamespace) to the same value as [`namespace`](/consul/docs/connect/ca/vault#namespace). | ||
|
|
||
| #### Service mesh compatibility ((#service-mesh-compatibility-1-15)) | ||
|
|
||
| Upgrade to **Consul version 1.15.2 or later**. | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do these all belong within a "service mesh compatibility" section (like exists for 1.15 and 1.14)? And would it affect our upgrade guidance here? Like ... upgrade to Consul 1.15.2 or later, but avoid 1.15.6 if [using Vault Enterprise as a CA](link to anchor tag).
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I moved around the sections so they fall under "service mesh compatibility" except for 1.16 which didn't have the section. |
||
|
|
@@ -176,6 +191,13 @@ In Consul v1.15 and higher: | |
|
|
||
| ## Consul 1.14.x | ||
|
|
||
| #### Vault Enterprise as CA | ||
| Using Vault as CA with Consul version 1.14.10 will fail to initialize the CA if [`namespace`](/consul/docs/connect/ca/vault#namespace) is set | ||
| but [`intermediate_pki_namespace`](/consul/docs/connect/ca/vault#intermediatepkinamespace) or [`root_pki_namespace`](/consul/docs/connect/ca/vault#rootpkinamespace) | ||
| are empty. This is a bug which will be fixed in a future version. | ||
| To work around this issue, users must explicitly set [`intermediate_pki_namespace`](/consul/docs/connect/ca/vault#intermediatepkinamespace) and | ||
| [`root_pki_namespace`](/consul/docs/connect/ca/vault#rootpkinamespace) to the same value as [`namespace`](/consul/docs/connect/ca/vault#namespace). | ||
|
|
||
| ### Service Mesh Compatibility | ||
| Prior to Consul 1.14, cluster peering and Consul service mesh were disabled by default. | ||
| A breaking change was made in Consul 1.14 that: | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should add to KNOWN ISSUES in the changelog
The changelog content can link to the applicable upgrade guidance section in our docs (here) once published.
The changelog PR can be separate (since it won't be backported in any way).