Skip to content

Commit 8a70a74

Browse files
committed
[skip ci] repo-sync
1 parent fddb5f1 commit 8a70a74

15 files changed

+36
-456
lines changed

gen/models/V1ContainerStatus.ts

Lines changed: 0 additions & 79 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,6 @@ export class V1ContainerStatus {
6060
*/
6161
'started'?: boolean;
6262
'state'?: V1ContainerState;
63-
/**
64-
* StopSignal reports the effective stop signal for this container Possible enum values: - `\"SIGABRT\"` - `\"SIGALRM\"` - `\"SIGBUS\"` - `\"SIGCHLD\"` - `\"SIGCLD\"` - `\"SIGCONT\"` - `\"SIGFPE\"` - `\"SIGHUP\"` - `\"SIGILL\"` - `\"SIGINT\"` - `\"SIGIO\"` - `\"SIGIOT\"` - `\"SIGKILL\"` - `\"SIGPIPE\"` - `\"SIGPOLL\"` - `\"SIGPROF\"` - `\"SIGPWR\"` - `\"SIGQUIT\"` - `\"SIGRTMAX\"` - `\"SIGRTMAX-1\"` - `\"SIGRTMAX-10\"` - `\"SIGRTMAX-11\"` - `\"SIGRTMAX-12\"` - `\"SIGRTMAX-13\"` - `\"SIGRTMAX-14\"` - `\"SIGRTMAX-2\"` - `\"SIGRTMAX-3\"` - `\"SIGRTMAX-4\"` - `\"SIGRTMAX-5\"` - `\"SIGRTMAX-6\"` - `\"SIGRTMAX-7\"` - `\"SIGRTMAX-8\"` - `\"SIGRTMAX-9\"` - `\"SIGRTMIN\"` - `\"SIGRTMIN+1\"` - `\"SIGRTMIN+10\"` - `\"SIGRTMIN+11\"` - `\"SIGRTMIN+12\"` - `\"SIGRTMIN+13\"` - `\"SIGRTMIN+14\"` - `\"SIGRTMIN+15\"` - `\"SIGRTMIN+2\"` - `\"SIGRTMIN+3\"` - `\"SIGRTMIN+4\"` - `\"SIGRTMIN+5\"` - `\"SIGRTMIN+6\"` - `\"SIGRTMIN+7\"` - `\"SIGRTMIN+8\"` - `\"SIGRTMIN+9\"` - `\"SIGSEGV\"` - `\"SIGSTKFLT\"` - `\"SIGSTOP\"` - `\"SIGSYS\"` - `\"SIGTERM\"` - `\"SIGTRAP\"` - `\"SIGTSTP\"` - `\"SIGTTIN\"` - `\"SIGTTOU\"` - `\"SIGURG\"` - `\"SIGUSR1\"` - `\"SIGUSR2\"` - `\"SIGVTALRM\"` - `\"SIGWINCH\"` - `\"SIGXCPU\"` - `\"SIGXFSZ\"`
65-
*/
66-
'stopSignal'?: V1ContainerStatusStopSignalEnum;
6763
'user'?: V1ContainerUser;
6864
/**
6965
* Status of volume mounts.
@@ -145,12 +141,6 @@ export class V1ContainerStatus {
145141
"type": "V1ContainerState",
146142
"format": ""
147143
},
148-
{
149-
"name": "stopSignal",
150-
"baseName": "stopSignal",
151-
"type": "V1ContainerStatusStopSignalEnum",
152-
"format": ""
153-
},
154144
{
155145
"name": "user",
156146
"baseName": "user",
@@ -172,72 +162,3 @@ export class V1ContainerStatus {
172162
}
173163
}
174164

175-
176-
export enum V1ContainerStatusStopSignalEnum {
177-
Sigabrt = 'SIGABRT',
178-
Sigalrm = 'SIGALRM',
179-
Sigbus = 'SIGBUS',
180-
Sigchld = 'SIGCHLD',
181-
Sigcld = 'SIGCLD',
182-
Sigcont = 'SIGCONT',
183-
Sigfpe = 'SIGFPE',
184-
Sighup = 'SIGHUP',
185-
Sigill = 'SIGILL',
186-
Sigint = 'SIGINT',
187-
Sigio = 'SIGIO',
188-
Sigiot = 'SIGIOT',
189-
Sigkill = 'SIGKILL',
190-
Sigpipe = 'SIGPIPE',
191-
Sigpoll = 'SIGPOLL',
192-
Sigprof = 'SIGPROF',
193-
Sigpwr = 'SIGPWR',
194-
Sigquit = 'SIGQUIT',
195-
Sigrtmax = 'SIGRTMAX',
196-
Sigrtmax1 = 'SIGRTMAX-1',
197-
Sigrtmax10 = 'SIGRTMAX-10',
198-
Sigrtmax11 = 'SIGRTMAX-11',
199-
Sigrtmax12 = 'SIGRTMAX-12',
200-
Sigrtmax13 = 'SIGRTMAX-13',
201-
Sigrtmax14 = 'SIGRTMAX-14',
202-
Sigrtmax2 = 'SIGRTMAX-2',
203-
Sigrtmax3 = 'SIGRTMAX-3',
204-
Sigrtmax4 = 'SIGRTMAX-4',
205-
Sigrtmax5 = 'SIGRTMAX-5',
206-
Sigrtmax6 = 'SIGRTMAX-6',
207-
Sigrtmax7 = 'SIGRTMAX-7',
208-
Sigrtmax8 = 'SIGRTMAX-8',
209-
Sigrtmax9 = 'SIGRTMAX-9',
210-
Sigrtmin = 'SIGRTMIN',
211-
Sigrtmin1 = 'SIGRTMIN+1',
212-
Sigrtmin10 = 'SIGRTMIN+10',
213-
Sigrtmin11 = 'SIGRTMIN+11',
214-
Sigrtmin12 = 'SIGRTMIN+12',
215-
Sigrtmin13 = 'SIGRTMIN+13',
216-
Sigrtmin14 = 'SIGRTMIN+14',
217-
Sigrtmin15 = 'SIGRTMIN+15',
218-
Sigrtmin2 = 'SIGRTMIN+2',
219-
Sigrtmin3 = 'SIGRTMIN+3',
220-
Sigrtmin4 = 'SIGRTMIN+4',
221-
Sigrtmin5 = 'SIGRTMIN+5',
222-
Sigrtmin6 = 'SIGRTMIN+6',
223-
Sigrtmin7 = 'SIGRTMIN+7',
224-
Sigrtmin8 = 'SIGRTMIN+8',
225-
Sigrtmin9 = 'SIGRTMIN+9',
226-
Sigsegv = 'SIGSEGV',
227-
Sigstkflt = 'SIGSTKFLT',
228-
Sigstop = 'SIGSTOP',
229-
Sigsys = 'SIGSYS',
230-
Sigterm = 'SIGTERM',
231-
Sigtrap = 'SIGTRAP',
232-
Sigtstp = 'SIGTSTP',
233-
Sigttin = 'SIGTTIN',
234-
Sigttou = 'SIGTTOU',
235-
Sigurg = 'SIGURG',
236-
Sigusr1 = 'SIGUSR1',
237-
Sigusr2 = 'SIGUSR2',
238-
Sigvtalrm = 'SIGVTALRM',
239-
Sigwinch = 'SIGWINCH',
240-
Sigxcpu = 'SIGXCPU',
241-
Sigxfsz = 'SIGXFSZ'
242-
}
243-

gen/models/V1EnvFromSource.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ import { V1SecretEnvSource } from '../models/V1SecretEnvSource';
1515

1616

1717
/**
18-
* EnvFromSource represents the source of a set of ConfigMaps or Secrets
18+
* EnvFromSource represents the source of a set of ConfigMaps
1919
*/
2020
export class V1EnvFromSource {
2121
'configMapRef'?: V1ConfigMapEnvSource;
2222
/**
23-
* Optional text to prepend to the name of each environment variable. Must be a C_IDENTIFIER.
23+
* An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.
2424
*/
2525
'prefix'?: string;
2626
'secretRef'?: V1SecretEnvSource;

gen/models/V1Lifecycle.ts

Lines changed: 0 additions & 79 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@ import { V1LifecycleHandler } from '../models/V1LifecycleHandler';
1919
export class V1Lifecycle {
2020
'postStart'?: V1LifecycleHandler;
2121
'preStop'?: V1LifecycleHandler;
22-
/**
23-
* StopSignal defines which signal will be sent to a container when it is being stopped. If not specified, the default is defined by the container runtime in use. StopSignal can only be set for Pods with a non-empty .spec.os.name Possible enum values: - `\"SIGABRT\"` - `\"SIGALRM\"` - `\"SIGBUS\"` - `\"SIGCHLD\"` - `\"SIGCLD\"` - `\"SIGCONT\"` - `\"SIGFPE\"` - `\"SIGHUP\"` - `\"SIGILL\"` - `\"SIGINT\"` - `\"SIGIO\"` - `\"SIGIOT\"` - `\"SIGKILL\"` - `\"SIGPIPE\"` - `\"SIGPOLL\"` - `\"SIGPROF\"` - `\"SIGPWR\"` - `\"SIGQUIT\"` - `\"SIGRTMAX\"` - `\"SIGRTMAX-1\"` - `\"SIGRTMAX-10\"` - `\"SIGRTMAX-11\"` - `\"SIGRTMAX-12\"` - `\"SIGRTMAX-13\"` - `\"SIGRTMAX-14\"` - `\"SIGRTMAX-2\"` - `\"SIGRTMAX-3\"` - `\"SIGRTMAX-4\"` - `\"SIGRTMAX-5\"` - `\"SIGRTMAX-6\"` - `\"SIGRTMAX-7\"` - `\"SIGRTMAX-8\"` - `\"SIGRTMAX-9\"` - `\"SIGRTMIN\"` - `\"SIGRTMIN+1\"` - `\"SIGRTMIN+10\"` - `\"SIGRTMIN+11\"` - `\"SIGRTMIN+12\"` - `\"SIGRTMIN+13\"` - `\"SIGRTMIN+14\"` - `\"SIGRTMIN+15\"` - `\"SIGRTMIN+2\"` - `\"SIGRTMIN+3\"` - `\"SIGRTMIN+4\"` - `\"SIGRTMIN+5\"` - `\"SIGRTMIN+6\"` - `\"SIGRTMIN+7\"` - `\"SIGRTMIN+8\"` - `\"SIGRTMIN+9\"` - `\"SIGSEGV\"` - `\"SIGSTKFLT\"` - `\"SIGSTOP\"` - `\"SIGSYS\"` - `\"SIGTERM\"` - `\"SIGTRAP\"` - `\"SIGTSTP\"` - `\"SIGTTIN\"` - `\"SIGTTOU\"` - `\"SIGURG\"` - `\"SIGUSR1\"` - `\"SIGUSR2\"` - `\"SIGVTALRM\"` - `\"SIGWINCH\"` - `\"SIGXCPU\"` - `\"SIGXFSZ\"`
24-
*/
25-
'stopSignal'?: V1LifecycleStopSignalEnum;
2622

2723
static readonly discriminator: string | undefined = undefined;
2824

@@ -38,12 +34,6 @@ export class V1Lifecycle {
3834
"baseName": "preStop",
3935
"type": "V1LifecycleHandler",
4036
"format": ""
41-
},
42-
{
43-
"name": "stopSignal",
44-
"baseName": "stopSignal",
45-
"type": "V1LifecycleStopSignalEnum",
46-
"format": ""
4737
} ];
4838

4939
static getAttributeTypeMap() {
@@ -54,72 +44,3 @@ export class V1Lifecycle {
5444
}
5545
}
5646

57-
58-
export enum V1LifecycleStopSignalEnum {
59-
Sigabrt = 'SIGABRT',
60-
Sigalrm = 'SIGALRM',
61-
Sigbus = 'SIGBUS',
62-
Sigchld = 'SIGCHLD',
63-
Sigcld = 'SIGCLD',
64-
Sigcont = 'SIGCONT',
65-
Sigfpe = 'SIGFPE',
66-
Sighup = 'SIGHUP',
67-
Sigill = 'SIGILL',
68-
Sigint = 'SIGINT',
69-
Sigio = 'SIGIO',
70-
Sigiot = 'SIGIOT',
71-
Sigkill = 'SIGKILL',
72-
Sigpipe = 'SIGPIPE',
73-
Sigpoll = 'SIGPOLL',
74-
Sigprof = 'SIGPROF',
75-
Sigpwr = 'SIGPWR',
76-
Sigquit = 'SIGQUIT',
77-
Sigrtmax = 'SIGRTMAX',
78-
Sigrtmax1 = 'SIGRTMAX-1',
79-
Sigrtmax10 = 'SIGRTMAX-10',
80-
Sigrtmax11 = 'SIGRTMAX-11',
81-
Sigrtmax12 = 'SIGRTMAX-12',
82-
Sigrtmax13 = 'SIGRTMAX-13',
83-
Sigrtmax14 = 'SIGRTMAX-14',
84-
Sigrtmax2 = 'SIGRTMAX-2',
85-
Sigrtmax3 = 'SIGRTMAX-3',
86-
Sigrtmax4 = 'SIGRTMAX-4',
87-
Sigrtmax5 = 'SIGRTMAX-5',
88-
Sigrtmax6 = 'SIGRTMAX-6',
89-
Sigrtmax7 = 'SIGRTMAX-7',
90-
Sigrtmax8 = 'SIGRTMAX-8',
91-
Sigrtmax9 = 'SIGRTMAX-9',
92-
Sigrtmin = 'SIGRTMIN',
93-
Sigrtmin1 = 'SIGRTMIN+1',
94-
Sigrtmin10 = 'SIGRTMIN+10',
95-
Sigrtmin11 = 'SIGRTMIN+11',
96-
Sigrtmin12 = 'SIGRTMIN+12',
97-
Sigrtmin13 = 'SIGRTMIN+13',
98-
Sigrtmin14 = 'SIGRTMIN+14',
99-
Sigrtmin15 = 'SIGRTMIN+15',
100-
Sigrtmin2 = 'SIGRTMIN+2',
101-
Sigrtmin3 = 'SIGRTMIN+3',
102-
Sigrtmin4 = 'SIGRTMIN+4',
103-
Sigrtmin5 = 'SIGRTMIN+5',
104-
Sigrtmin6 = 'SIGRTMIN+6',
105-
Sigrtmin7 = 'SIGRTMIN+7',
106-
Sigrtmin8 = 'SIGRTMIN+8',
107-
Sigrtmin9 = 'SIGRTMIN+9',
108-
Sigsegv = 'SIGSEGV',
109-
Sigstkflt = 'SIGSTKFLT',
110-
Sigstop = 'SIGSTOP',
111-
Sigsys = 'SIGSYS',
112-
Sigterm = 'SIGTERM',
113-
Sigtrap = 'SIGTRAP',
114-
Sigtstp = 'SIGTSTP',
115-
Sigttin = 'SIGTTIN',
116-
Sigttou = 'SIGTTOU',
117-
Sigurg = 'SIGURG',
118-
Sigusr1 = 'SIGUSR1',
119-
Sigusr2 = 'SIGUSR2',
120-
Sigvtalrm = 'SIGVTALRM',
121-
Sigwinch = 'SIGWINCH',
122-
Sigxcpu = 'SIGXCPU',
123-
Sigxfsz = 'SIGXFSZ'
124-
}
125-

gen/models/V1PodAffinityTerm.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ import { V1LabelSelector } from '../models/V1LabelSelector';
1919
export class V1PodAffinityTerm {
2020
'labelSelector'?: V1LabelSelector;
2121
/**
22-
* MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration. The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` to select the group of existing pods which pods will be taken into consideration for the incoming pod\'s pod (anti) affinity. Keys that don\'t exist in the incoming pod labels will be ignored. The default value is empty. The same key is forbidden to exist in both matchLabelKeys and labelSelector. Also, matchLabelKeys cannot be set when labelSelector isn\'t set.
22+
* MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration. The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` to select the group of existing pods which pods will be taken into consideration for the incoming pod\'s pod (anti) affinity. Keys that don\'t exist in the incoming pod labels will be ignored. The default value is empty. The same key is forbidden to exist in both matchLabelKeys and labelSelector. Also, matchLabelKeys cannot be set when labelSelector isn\'t set. This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
2323
*/
2424
'matchLabelKeys'?: Array<string>;
2525
/**
26-
* MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration. The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` to select the group of existing pods which pods will be taken into consideration for the incoming pod\'s pod (anti) affinity. Keys that don\'t exist in the incoming pod labels will be ignored. The default value is empty. The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. Also, mismatchLabelKeys cannot be set when labelSelector isn\'t set.
26+
* MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration. The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` to select the group of existing pods which pods will be taken into consideration for the incoming pod\'s pod (anti) affinity. Keys that don\'t exist in the incoming pod labels will be ignored. The default value is empty. The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. Also, mismatchLabelKeys cannot be set when labelSelector isn\'t set. This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
2727
*/
2828
'mismatchLabelKeys'?: Array<string>;
2929
'namespaceSelector'?: V1LabelSelector;

gen/models/V1PodCondition.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,6 @@ export class V1PodCondition {
2929
*/
3030
'message'?: string;
3131
/**
32-
* If set, this represents the .metadata.generation that the pod condition was set based upon. This is an alpha field. Enable PodObservedGenerationTracking to be able to use this field.
33-
*/
34-
'observedGeneration'?: number;
35-
/**
3632
* Unique, one-word, CamelCase reason for the condition\'s last transition.
3733
*/
3834
'reason'?: string;
@@ -66,12 +62,6 @@ export class V1PodCondition {
6662
"type": "string",
6763
"format": ""
6864
},
69-
{
70-
"name": "observedGeneration",
71-
"baseName": "observedGeneration",
72-
"type": "number",
73-
"format": "int64"
74-
},
7565
{
7666
"name": "reason",
7767
"baseName": "reason",

gen/models/V1PodSpec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export class V1PodSpec {
8686
*/
8787
'imagePullSecrets'?: Array<V1LocalObjectReference>;
8888
/**
89-
* List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
89+
* List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
9090
*/
9191
'initContainers'?: Array<V1Container>;
9292
/**

gen/models/V1PodStatus.ts

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,6 @@ export class V1PodStatus {
5454
*/
5555
'nominatedNodeName'?: string;
5656
/**
57-
* If set, this represents the .metadata.generation that the pod status was set based upon. This is an alpha field. Enable PodObservedGenerationTracking to be able to use this field.
58-
*/
59-
'observedGeneration'?: number;
60-
/**
6157
* The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle. The conditions array, the reason and message fields, and the individual container status arrays contain more detail about the pod\'s status. There are five possible phase values: Pending: The pod has been accepted by the Kubernetes system, but one or more of the container images has not been created. This includes time before being scheduled as well as time spent downloading images over the network, which could take a while. Running: The pod has been bound to a node, and all of the containers have been created. At least one container is still running, or is in the process of starting or restarting. Succeeded: All containers in the pod have terminated in success, and will not be restarted. Failed: All containers in the pod have terminated, and at least one container has terminated in failure. The container either exited with non-zero status or was terminated by the system. Unknown: For some reason the state of the pod could not be obtained, typically due to an error in communicating with the host of the pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase Possible enum values: - `\"Failed\"` means that all containers in the pod have terminated, and at least one container has terminated in a failure (exited with a non-zero exit code or was stopped by the system). - `\"Pending\"` means the pod has been accepted by the system, but one or more of the containers has not been started. This includes time before being bound to a node, as well as time spent pulling images onto the host. - `\"Running\"` means the pod has been bound to a node and all of the containers have been started. At least one container is still running or is in the process of being restarted. - `\"Succeeded\"` means that all containers in the pod have voluntarily terminated with a container exit code of 0, and the system is not going to restart any of these containers. - `\"Unknown\"` means that for some reason the state of the pod could not be obtained, typically due to an error in communicating with the host of the pod. Deprecated: It isn\'t being set since 2015 (74da3b14b0c0f658b3bb8d2def5094686d0e9095)
6258
*/
6359
'phase'?: V1PodStatusPhaseEnum;
@@ -78,7 +74,7 @@ export class V1PodStatus {
7874
*/
7975
'reason'?: string;
8076
/**
81-
* Status of resources resize desired for pod\'s containers. It is empty if no resources resize is pending. Any changes to container resources will automatically set this to \"Proposed\" Deprecated: Resize status is moved to two pod conditions PodResizePending and PodResizeInProgress. PodResizePending will track states where the spec has been resized, but the Kubelet has not yet allocated the resources. PodResizeInProgress will track in-progress resizes, and should be present whenever allocated resources != acknowledged resources.
77+
* Status of resources resize desired for pod\'s containers. It is empty if no resources resize is pending. Any changes to container resources will automatically set this to \"Proposed\"
8278
*/
8379
'resize'?: string;
8480
/**
@@ -141,12 +137,6 @@ export class V1PodStatus {
141137
"type": "string",
142138
"format": ""
143139
},
144-
{
145-
"name": "observedGeneration",
146-
"baseName": "observedGeneration",
147-
"type": "number",
148-
"format": "int64"
149-
},
150140
{
151141
"name": "phase",
152142
"baseName": "phase",

gen/models/V1ResourceQuotaSpec.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ export enum V1ResourceQuotaSpecScopesEnum {
6464
NotBestEffort = 'NotBestEffort',
6565
NotTerminating = 'NotTerminating',
6666
PriorityClass = 'PriorityClass',
67-
Terminating = 'Terminating',
68-
VolumeAttributesClass = 'VolumeAttributesClass'
67+
Terminating = 'Terminating'
6968
}
7069

gen/models/V1ScopedResourceSelectorRequirement.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export class V1ScopedResourceSelectorRequirement {
2121
*/
2222
'operator': V1ScopedResourceSelectorRequirementOperatorEnum;
2323
/**
24-
* The name of the scope that the selector applies to. Possible enum values: - `\"BestEffort\"` Match all pod objects that have best effort quality of service - `\"CrossNamespacePodAffinity\"` Match all pod objects that have cross-namespace pod (anti)affinity mentioned. - `\"NotBestEffort\"` Match all pod objects that do not have best effort quality of service - `\"NotTerminating\"` Match all pod objects where spec.activeDeadlineSeconds is nil - `\"PriorityClass\"` Match all pod objects that have priority class mentioned - `\"Terminating\"` Match all pod objects where spec.activeDeadlineSeconds >=0 - `\"VolumeAttributesClass\"` Match all pvc objects that have volume attributes class mentioned.
24+
* The name of the scope that the selector applies to. Possible enum values: - `\"BestEffort\"` Match all pod objects that have best effort quality of service - `\"CrossNamespacePodAffinity\"` Match all pod objects that have cross-namespace pod (anti)affinity mentioned. - `\"NotBestEffort\"` Match all pod objects that do not have best effort quality of service - `\"NotTerminating\"` Match all pod objects where spec.activeDeadlineSeconds is nil - `\"PriorityClass\"` Match all pod objects that have priority class mentioned - `\"Terminating\"` Match all pod objects where spec.activeDeadlineSeconds >=0
2525
*/
2626
'scopeName': V1ScopedResourceSelectorRequirementScopeNameEnum;
2727
/**
@@ -72,7 +72,6 @@ export enum V1ScopedResourceSelectorRequirementScopeNameEnum {
7272
NotBestEffort = 'NotBestEffort',
7373
NotTerminating = 'NotTerminating',
7474
PriorityClass = 'PriorityClass',
75-
Terminating = 'Terminating',
76-
VolumeAttributesClass = 'VolumeAttributesClass'
75+
Terminating = 'Terminating'
7776
}
7877

0 commit comments

Comments
 (0)