Skip to content

Commit 772cb68

Browse files
kumahq[bot]fabianrbz
authored andcommitted
chore(deps): update docs from repo source
Signed-off-by: kumahq[bot] <110050114+kumahq[bot]@users.noreply.github.com>
1 parent cd6c3f9 commit 772cb68

File tree

2 files changed

+52
-0
lines changed

2 files changed

+52
-0
lines changed

app/assets/mesh/dev/raw/crds/kuma.io_meshmultizoneservices.yaml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,46 @@ spec:
104104
type: string
105105
type: object
106106
type: array
107+
conditions:
108+
description: Conditions is an array of current conditions
109+
items:
110+
properties:
111+
message:
112+
description: |-
113+
message is a human readable message indicating details about the transition.
114+
This may be an empty string.
115+
maxLength: 32768
116+
type: string
117+
reason:
118+
description: |-
119+
reason contains a programmatic identifier indicating the reason for the condition's last transition.
120+
Producers of specific condition types may define expected values and meanings for this field,
121+
and whether the values are considered a guaranteed API.
122+
The value should be a CamelCase string.
123+
This field may not be empty.
124+
maxLength: 1024
125+
minLength: 1
126+
pattern: ^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$
127+
type: string
128+
status:
129+
description: status of the condition, one of True, False, Unknown.
130+
enum:
131+
- "True"
132+
- "False"
133+
- Unknown
134+
type: string
135+
type:
136+
description: type of condition in CamelCase or in foo.example.com/CamelCase.
137+
maxLength: 316
138+
pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$
139+
type: string
140+
required:
141+
- message
142+
- reason
143+
- status
144+
- type
145+
type: object
146+
type: array
107147
hostnameGenerators:
108148
description: Status of hostnames generator applied on this resource
109149
items:

app/assets/mesh/raw/UPGRADE.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,18 @@ If you are using `OPAPolicy`, two choices:
5454

5555
## Upgrade to `2.11.x`
5656

57+
### Helm upgrade with `--reuse-values` and `namespaceAllowList`
58+
59+
If you upgrade to `2.11.8` (or earlier `2.11.x` patch versions) using Helm with the `--reuse-values` flag, the upgrade may fail with a template error related to `namespaceAllowList`.
60+
61+
**Workaround:** Add the following to your `values.yaml` file before upgrading:
62+
63+
```yaml
64+
namespaceAllowList: []
65+
```
66+
67+
This issue is resolved in version `2.11.9` and later.
68+
5769
### Introduce an option to skip RBAC creation
5870

5971
By default, we create all RBAC resources required for the mesh to function properly. Since `2.11.x`, it's possible to skip the creation of `ClusterRole`, `ClusterRoleBinding`, `Role`, and `RoleBinding`. We introduced two flags:

0 commit comments

Comments
 (0)