You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: config/crd/bases/gateway.nginx.org_nginxproxies.yaml
+7-11
Original file line number
Diff line number
Diff line change
@@ -332,6 +332,12 @@ spec:
332
332
- port
333
333
type: object
334
334
type: object
335
+
stopSignal:
336
+
description: |-
337
+
StopSignal defines which signal will be sent to a container when it is being stopped.
338
+
If not specified, the default is defined by the container runtime in use.
339
+
StopSignal can only be set for Pods with a non-empty .spec.os.name
340
+
type: string
335
341
type: object
336
342
resources:
337
343
description: Resources describes the compute resource
@@ -751,7 +757,6 @@ spec:
751
757
pod labels will be ignored. The default value is empty.
752
758
The same key is forbidden to exist in both matchLabelKeys and labelSelector.
753
759
Also, matchLabelKeys cannot be set when labelSelector isn't set.
754
-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
755
760
items:
756
761
type: string
757
762
type: array
@@ -766,7 +771,6 @@ spec:
766
771
pod labels will be ignored. The default value is empty.
767
772
The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
768
773
Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
769
-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
770
774
items:
771
775
type: string
772
776
type: array
@@ -935,7 +939,6 @@ spec:
935
939
pod labels will be ignored. The default value is empty.
936
940
The same key is forbidden to exist in both matchLabelKeys and labelSelector.
937
941
Also, matchLabelKeys cannot be set when labelSelector isn't set.
938
-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
939
942
items:
940
943
type: string
941
944
type: array
@@ -950,7 +953,6 @@ spec:
950
953
pod labels will be ignored. The default value is empty.
951
954
The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
952
955
Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
953
-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
954
956
items:
955
957
type: string
956
958
type: array
@@ -1117,7 +1119,6 @@ spec:
1117
1119
pod labels will be ignored. The default value is empty.
1118
1120
The same key is forbidden to exist in both matchLabelKeys and labelSelector.
1119
1121
Also, matchLabelKeys cannot be set when labelSelector isn't set.
1120
-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
1121
1122
items:
1122
1123
type: string
1123
1124
type: array
@@ -1132,7 +1133,6 @@ spec:
1132
1133
pod labels will be ignored. The default value is empty.
1133
1134
The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
1134
1135
Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
1135
-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
1136
1136
items:
1137
1137
type: string
1138
1138
type: array
@@ -1301,7 +1301,6 @@ spec:
1301
1301
pod labels will be ignored. The default value is empty.
1302
1302
The same key is forbidden to exist in both matchLabelKeys and labelSelector.
1303
1303
Also, matchLabelKeys cannot be set when labelSelector isn't set.
1304
-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
1305
1304
items:
1306
1305
type: string
1307
1306
type: array
@@ -1316,7 +1315,6 @@ spec:
1316
1315
pod labels will be ignored. The default value is empty.
1317
1316
The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
1318
1317
Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
1319
-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
1320
1318
items:
1321
1319
type: string
1322
1320
type: array
@@ -1585,7 +1583,6 @@ spec:
1585
1583
- Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations.
1586
1584
1587
1585
If this value is nil, the behavior is equivalent to the Honor policy.
1588
-
This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.
1589
1586
type: string
1590
1587
nodeTaintsPolicy:
1591
1588
description: |-
@@ -1596,7 +1593,6 @@ spec:
1596
1593
- Ignore: node taints are ignored. All nodes are included.
1597
1594
1598
1595
If this value is nil, the behavior is equivalent to the Ignore policy.
1599
-
This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.
1600
1596
type: string
1601
1597
topologyKey:
1602
1598
description: |-
@@ -2576,7 +2572,7 @@ spec:
2576
2572
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.
2577
2573
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.
2578
2574
The volume will be mounted read-only (ro) and non-executable files (noexec).
2579
-
Sub path mounts for containers are not supported (spec.containers[*].volumeMounts.subpath).
2575
+
Sub path mounts for containers are not supported (spec.containers[*].volumeMounts.subpath) before 1.33.
2580
2576
The field spec.securityContext.fsGroupChangePolicy has no effect on this volume type.
Copy file name to clipboardExpand all lines: deploy/crds.yaml
+7-11
Original file line number
Diff line number
Diff line change
@@ -917,6 +917,12 @@ spec:
917
917
- port
918
918
type: object
919
919
type: object
920
+
stopSignal:
921
+
description: |-
922
+
StopSignal defines which signal will be sent to a container when it is being stopped.
923
+
If not specified, the default is defined by the container runtime in use.
924
+
StopSignal can only be set for Pods with a non-empty .spec.os.name
925
+
type: string
920
926
type: object
921
927
resources:
922
928
description: Resources describes the compute resource
@@ -1336,7 +1342,6 @@ spec:
1336
1342
pod labels will be ignored. The default value is empty.
1337
1343
The same key is forbidden to exist in both matchLabelKeys and labelSelector.
1338
1344
Also, matchLabelKeys cannot be set when labelSelector isn't set.
1339
-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
1340
1345
items:
1341
1346
type: string
1342
1347
type: array
@@ -1351,7 +1356,6 @@ spec:
1351
1356
pod labels will be ignored. The default value is empty.
1352
1357
The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
1353
1358
Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
1354
-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
1355
1359
items:
1356
1360
type: string
1357
1361
type: array
@@ -1520,7 +1524,6 @@ spec:
1520
1524
pod labels will be ignored. The default value is empty.
1521
1525
The same key is forbidden to exist in both matchLabelKeys and labelSelector.
1522
1526
Also, matchLabelKeys cannot be set when labelSelector isn't set.
1523
-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
1524
1527
items:
1525
1528
type: string
1526
1529
type: array
@@ -1535,7 +1538,6 @@ spec:
1535
1538
pod labels will be ignored. The default value is empty.
1536
1539
The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
1537
1540
Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
1538
-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
1539
1541
items:
1540
1542
type: string
1541
1543
type: array
@@ -1702,7 +1704,6 @@ spec:
1702
1704
pod labels will be ignored. The default value is empty.
1703
1705
The same key is forbidden to exist in both matchLabelKeys and labelSelector.
1704
1706
Also, matchLabelKeys cannot be set when labelSelector isn't set.
1705
-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
1706
1707
items:
1707
1708
type: string
1708
1709
type: array
@@ -1717,7 +1718,6 @@ spec:
1717
1718
pod labels will be ignored. The default value is empty.
1718
1719
The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
1719
1720
Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
1720
-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
1721
1721
items:
1722
1722
type: string
1723
1723
type: array
@@ -1886,7 +1886,6 @@ spec:
1886
1886
pod labels will be ignored. The default value is empty.
1887
1887
The same key is forbidden to exist in both matchLabelKeys and labelSelector.
1888
1888
Also, matchLabelKeys cannot be set when labelSelector isn't set.
1889
-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
1890
1889
items:
1891
1890
type: string
1892
1891
type: array
@@ -1901,7 +1900,6 @@ spec:
1901
1900
pod labels will be ignored. The default value is empty.
1902
1901
The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
1903
1902
Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
1904
-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
1905
1903
items:
1906
1904
type: string
1907
1905
type: array
@@ -2170,7 +2168,6 @@ spec:
2170
2168
- Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations.
2171
2169
2172
2170
If this value is nil, the behavior is equivalent to the Honor policy.
2173
-
This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.
2174
2171
type: string
2175
2172
nodeTaintsPolicy:
2176
2173
description: |-
@@ -2181,7 +2178,6 @@ spec:
2181
2178
- Ignore: node taints are ignored. All nodes are included.
2182
2179
2183
2180
If this value is nil, the behavior is equivalent to the Ignore policy.
2184
-
This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.
2185
2181
type: string
2186
2182
topologyKey:
2187
2183
description: |-
@@ -3161,7 +3157,7 @@ spec:
3161
3157
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.
3162
3158
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.
3163
3159
The volume will be mounted read-only (ro) and non-executable files (noexec).
3164
-
Sub path mounts for containers are not supported (spec.containers[*].volumeMounts.subpath).
3160
+
Sub path mounts for containers are not supported (spec.containers[*].volumeMounts.subpath) before 1.33.
3165
3161
The field spec.securityContext.fsGroupChangePolicy has no effect on this volume type.
0 commit comments