Skip to content

Commit 046ac77

Browse files
committed
make generate manifests
1 parent d770d00 commit 046ac77

File tree

1 file changed

+31
-15
lines changed

1 file changed

+31
-15
lines changed

crds/operator.kyma-project.io_reactivejoboperators.yaml

+31-15
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ spec:
331331
pod labels will be ignored. The default value is empty.
332332
The same key is forbidden to exist in both matchLabelKeys and labelSelector.
333333
Also, matchLabelKeys cannot be set when labelSelector isn't set.
334-
This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
334+
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
335335
items:
336336
type: string
337337
type: array
@@ -346,7 +346,7 @@ spec:
346346
pod labels will be ignored. The default value is empty.
347347
The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
348348
Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
349-
This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
349+
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
350350
items:
351351
type: string
352352
type: array
@@ -512,7 +512,7 @@ spec:
512512
pod labels will be ignored. The default value is empty.
513513
The same key is forbidden to exist in both matchLabelKeys and labelSelector.
514514
Also, matchLabelKeys cannot be set when labelSelector isn't set.
515-
This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
515+
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
516516
items:
517517
type: string
518518
type: array
@@ -527,7 +527,7 @@ spec:
527527
pod labels will be ignored. The default value is empty.
528528
The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
529529
Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
530-
This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
530+
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
531531
items:
532532
type: string
533533
type: array
@@ -690,7 +690,7 @@ spec:
690690
pod labels will be ignored. The default value is empty.
691691
The same key is forbidden to exist in both matchLabelKeys and labelSelector.
692692
Also, matchLabelKeys cannot be set when labelSelector isn't set.
693-
This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
693+
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
694694
items:
695695
type: string
696696
type: array
@@ -705,7 +705,7 @@ spec:
705705
pod labels will be ignored. The default value is empty.
706706
The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
707707
Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
708-
This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
708+
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
709709
items:
710710
type: string
711711
type: array
@@ -871,7 +871,7 @@ spec:
871871
pod labels will be ignored. The default value is empty.
872872
The same key is forbidden to exist in both matchLabelKeys and labelSelector.
873873
Also, matchLabelKeys cannot be set when labelSelector isn't set.
874-
This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
874+
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
875875
items:
876876
type: string
877877
type: array
@@ -886,7 +886,7 @@ spec:
886886
pod labels will be ignored. The default value is empty.
887887
The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
888888
Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
889-
This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
889+
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
890890
items:
891891
type: string
892892
type: array
@@ -1136,18 +1136,28 @@ spec:
11361136
type: object
11371137
supplementalGroups:
11381138
description: |-
1139-
A list of groups applied to the first process run in each container, in addition
1140-
to the container's primary GID, the fsGroup (if specified), and group memberships
1141-
defined in the container image for the uid of the container process. If unspecified,
1142-
no additional groups are added to any container. Note that group memberships
1143-
defined in the container image for the uid of the container process are still effective,
1144-
even if they are not included in this list.
1139+
A list of groups applied to the first process run in each container, in
1140+
addition to the container's primary GID and fsGroup (if specified). If
1141+
the SupplementalGroupsPolicy feature is enabled, the
1142+
supplementalGroupsPolicy field determines whether these are in addition
1143+
to or instead of any group memberships defined in the container image.
1144+
If unspecified, no additional groups are added, though group memberships
1145+
defined in the container image may still be used, depending on the
1146+
supplementalGroupsPolicy field.
11451147
Note that this field cannot be set when spec.os.name is windows.
11461148
items:
11471149
format: int64
11481150
type: integer
11491151
type: array
11501152
x-kubernetes-list-type: atomic
1153+
supplementalGroupsPolicy:
1154+
description: |-
1155+
Defines how supplemental groups of the first container processes are calculated.
1156+
Valid values are "Merge" and "Strict". If not specified, "Merge" is used.
1157+
(Alpha) Using the field requires the SupplementalGroupsPolicy feature gate to be enabled
1158+
and the container runtime must implement support for this feature.
1159+
Note that this field cannot be set when spec.os.name is windows.
1160+
type: string
11511161
sysctls:
11521162
description: |-
11531163
Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported
@@ -1228,6 +1238,12 @@ spec:
12281238
the Pod where this field is used. It makes that resource available
12291239
inside a container.
12301240
type: string
1241+
request:
1242+
description: |-
1243+
Request is the name chosen for a request in the referenced claim.
1244+
If empty, everything from the claim is made available, otherwise
1245+
only the result of this request.
1246+
type: string
12311247
required:
12321248
- name
12331249
type: object
@@ -1331,7 +1347,7 @@ spec:
13311347
procMount:
13321348
description: |-
13331349
procMount denotes the type of proc mount to use for the containers.
1334-
The default is DefaultProcMount which uses the container runtime defaults for
1350+
The default value is Default which uses the container runtime defaults for
13351351
readonly paths and masked paths.
13361352
This requires the ProcMountType feature flag to be enabled.
13371353
Note that this field cannot be set when spec.os.name is windows.

0 commit comments

Comments
 (0)