Skip to content

Commit aad31f5

Browse files
authored
Dependency maintenance (#174)
1 parent 4d591de commit aad31f5

3 files changed

Lines changed: 194 additions & 81 deletions

File tree

config/crd/bases/managedupgrade.appuio.io_upgradejobhooks.yaml

Lines changed: 29 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -202,8 +202,6 @@ spec:
202202
batch.kubernetes.io/job-index-failure-count annotation. It can only
203203
be set when Job's completionMode=Indexed, and the Pod's restart
204204
policy is Never. The field is immutable.
205-
This field is beta-level. It can be used when the `JobBackoffLimitPerIndex`
206-
feature gate is enabled (enabled by default).
207205
format: int32
208206
type: integer
209207
completionMode:
@@ -279,8 +277,6 @@ spec:
279277
It can only be specified when backoffLimitPerIndex is set.
280278
It can be null or up to completions. It is required and must be
281279
less than or equal to 10^4 when is completions greater than 10^5.
282-
This field is beta-level. It can be used when the `JobBackoffLimitPerIndex`
283-
feature gate is enabled (enabled by default).
284280
format: int32
285281
type: integer
286282
parallelism:
@@ -323,8 +319,6 @@ spec:
323319
running pods are terminated.
324320
- FailIndex: indicates that the pod's index is marked as Failed and will
325321
not be restarted.
326-
This value is beta-level. It can be used when the
327-
`JobBackoffLimitPerIndex` feature gate is enabled (enabled by default).
328322
- Ignore: indicates that the counter towards the .backoffLimit is not
329323
incremented and a replacement pod is created.
330324
- Count: indicates that the pod is handled in the default way - the
@@ -479,9 +473,6 @@ spec:
479473
only when the number of succeeded pods equals to the completions.
480474
When the field is specified, it must be immutable and works only for the Indexed Jobs.
481475
Once the Job meets the SuccessPolicy, the lingering pods are terminated.
482-
483-
This field is beta-level. To use this field, you must enable the
484-
`JobSuccessPolicy` feature gate (enabled by default).
485476
properties:
486477
rules:
487478
description: |-
@@ -874,7 +865,6 @@ spec:
874865
pod labels will be ignored. The default value is empty.
875866
The same key is forbidden to exist in both matchLabelKeys and labelSelector.
876867
Also, matchLabelKeys cannot be set when labelSelector isn't set.
877-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
878868
items:
879869
type: string
880870
type: array
@@ -889,7 +879,6 @@ spec:
889879
pod labels will be ignored. The default value is empty.
890880
The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
891881
Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
892-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
893882
items:
894883
type: string
895884
type: array
@@ -1059,7 +1048,6 @@ spec:
10591048
pod labels will be ignored. The default value is empty.
10601049
The same key is forbidden to exist in both matchLabelKeys and labelSelector.
10611050
Also, matchLabelKeys cannot be set when labelSelector isn't set.
1062-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
10631051
items:
10641052
type: string
10651053
type: array
@@ -1074,7 +1062,6 @@ spec:
10741062
pod labels will be ignored. The default value is empty.
10751063
The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
10761064
Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
1077-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
10781065
items:
10791066
type: string
10801067
type: array
@@ -1243,7 +1230,6 @@ spec:
12431230
pod labels will be ignored. The default value is empty.
12441231
The same key is forbidden to exist in both matchLabelKeys and labelSelector.
12451232
Also, matchLabelKeys cannot be set when labelSelector isn't set.
1246-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
12471233
items:
12481234
type: string
12491235
type: array
@@ -1258,7 +1244,6 @@ spec:
12581244
pod labels will be ignored. The default value is empty.
12591245
The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
12601246
Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
1261-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
12621247
items:
12631248
type: string
12641249
type: array
@@ -1428,7 +1413,6 @@ spec:
14281413
pod labels will be ignored. The default value is empty.
14291414
The same key is forbidden to exist in both matchLabelKeys and labelSelector.
14301415
Also, matchLabelKeys cannot be set when labelSelector isn't set.
1431-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
14321416
items:
14331417
type: string
14341418
type: array
@@ -1443,7 +1427,6 @@ spec:
14431427
pod labels will be ignored. The default value is empty.
14441428
The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
14451429
Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
1446-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
14471430
items:
14481431
type: string
14491432
type: array
@@ -1712,7 +1695,7 @@ spec:
17121695
Cannot be updated.
17131696
items:
17141697
description: EnvFromSource represents the
1715-
source of a set of ConfigMaps
1698+
source of a set of ConfigMaps or Secrets
17161699
properties:
17171700
configMapRef:
17181701
description: The ConfigMap to select from
@@ -1733,8 +1716,8 @@ spec:
17331716
type: object
17341717
x-kubernetes-map-type: atomic
17351718
prefix:
1736-
description: An optional identifier to
1737-
prepend to each key in the ConfigMap.
1719+
description: Optional text to prepend
1720+
to the name of each environment variable.
17381721
Must be a C_IDENTIFIER.
17391722
type: string
17401723
secretRef:
@@ -2009,6 +1992,12 @@ spec:
20091992
- port
20101993
type: object
20111994
type: object
1995+
stopSignal:
1996+
description: |-
1997+
StopSignal defines which signal will be sent to a container when it is being stopped.
1998+
If not specified, the default is defined by the container runtime in use.
1999+
StopSignal can only be set for Pods with a non-empty .spec.os.name
2000+
type: string
20122001
type: object
20132002
livenessProbe:
20142003
description: |-
@@ -3258,7 +3247,7 @@ spec:
32583247
Cannot be updated.
32593248
items:
32603249
description: EnvFromSource represents the
3261-
source of a set of ConfigMaps
3250+
source of a set of ConfigMaps or Secrets
32623251
properties:
32633252
configMapRef:
32643253
description: The ConfigMap to select from
@@ -3279,8 +3268,8 @@ spec:
32793268
type: object
32803269
x-kubernetes-map-type: atomic
32813270
prefix:
3282-
description: An optional identifier to
3283-
prepend to each key in the ConfigMap.
3271+
description: Optional text to prepend
3272+
to the name of each environment variable.
32843273
Must be a C_IDENTIFIER.
32853274
type: string
32863275
secretRef:
@@ -3552,6 +3541,12 @@ spec:
35523541
- port
35533542
type: object
35543543
type: object
3544+
stopSignal:
3545+
description: |-
3546+
StopSignal defines which signal will be sent to a container when it is being stopped.
3547+
If not specified, the default is defined by the container runtime in use.
3548+
StopSignal can only be set for Pods with a non-empty .spec.os.name
3549+
type: string
35553550
type: object
35563551
livenessProbe:
35573552
description: Probes are not allowed for ephemeral
@@ -4621,7 +4616,7 @@ spec:
46214616
Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes.
46224617
The resourceRequirements of an init container are taken into account during scheduling
46234618
by finding the highest request/limit for each resource type, and then using the max of
4624-
of that value or the sum of the normal containers. Limits are applied to init containers
4619+
that value or the sum of the normal containers. Limits are applied to init containers
46254620
in a similar fashion.
46264621
Init containers cannot currently be added or removed.
46274622
Cannot be updated.
@@ -4801,7 +4796,7 @@ spec:
48014796
Cannot be updated.
48024797
items:
48034798
description: EnvFromSource represents the
4804-
source of a set of ConfigMaps
4799+
source of a set of ConfigMaps or Secrets
48054800
properties:
48064801
configMapRef:
48074802
description: The ConfigMap to select from
@@ -4822,8 +4817,8 @@ spec:
48224817
type: object
48234818
x-kubernetes-map-type: atomic
48244819
prefix:
4825-
description: An optional identifier to
4826-
prepend to each key in the ConfigMap.
4820+
description: Optional text to prepend
4821+
to the name of each environment variable.
48274822
Must be a C_IDENTIFIER.
48284823
type: string
48294824
secretRef:
@@ -5098,6 +5093,12 @@ spec:
50985093
- port
50995094
type: object
51005095
type: object
5096+
stopSignal:
5097+
description: |-
5098+
StopSignal defines which signal will be sent to a container when it is being stopped.
5099+
If not specified, the default is defined by the container runtime in use.
5100+
StopSignal can only be set for Pods with a non-empty .spec.os.name
5101+
type: string
51015102
type: object
51025103
livenessProbe:
51035104
description: |-
@@ -6833,7 +6834,6 @@ spec:
68336834
- Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations.
68346835

68356836
If this value is nil, the behavior is equivalent to the Honor policy.
6836-
This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.
68376837
type: string
68386838
nodeTaintsPolicy:
68396839
description: |-
@@ -6844,7 +6844,6 @@ spec:
68446844
- Ignore: node taints are ignored. All nodes are included.
68456845

68466846
If this value is nil, the behavior is equivalent to the Ignore policy.
6847-
This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.
68486847
type: string
68496848
topologyKey:
68506849
description: |-
@@ -7855,7 +7854,7 @@ spec:
78557854
The types of objects that may be mounted by this volume are defined by the container runtime implementation on a host machine and at minimum must include all valid types supported by the container image field.
78567855
The OCI object gets mounted in a single directory (spec.containers[*].volumeMounts.mountPath) by merging the manifest layers in the same way as for container images.
78577856
The volume will be mounted read-only (ro) and non-executable files (noexec).
7858-
Sub path mounts for containers are not supported (spec.containers[*].volumeMounts.subpath).
7857+
Sub path mounts for containers are not supported (spec.containers[*].volumeMounts.subpath) before 1.33.
78597858
The field spec.securityContext.fsGroupChangePolicy has no effect on this volume type.
78607859
properties:
78617860
pullPolicy:

0 commit comments

Comments
 (0)