Skip to content

Commit 640a72d

Browse files
authored
Merge pull request #774 from brendandburns/intorstring
Fix generation of IntOrString
2 parents b8382b6 + 3df7390 commit 640a72d

13 files changed

+77
-76
lines changed

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kubernetes/client-node",
3-
"version": "0.16.1",
3+
"version": "0.16.3",
44
"description": "NodeJS client for kubernetes",
55
"repository": {
66
"type": "git",

settings

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# limitations under the License.
1616

1717
# kubernetes-client/gen commit to use for code generation.
18-
export GEN_COMMIT=a3aef4d
18+
export GEN_COMMIT=82c3ff5
1919

2020
# GitHub username/organization to clone kubernetes repo from.
2121
export USERNAME=kubernetes
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4dbc0536a9330c99ca0874d9b9d577fd581a1820517a27f20b4dbf5af0f6fb75
1+
a5685a88a8d1b58674feda167bae22437c9580a1664511293db4508c164603d2

src/gen/model/v1HTTPGetAction.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
*/
1212

1313
import { RequestFile } from './models';
14+
import { IntOrString } from '../../types';
1415
import { V1HTTPHeader } from './v1HTTPHeader';
1516

1617
/**
@@ -30,9 +31,9 @@ export class V1HTTPGetAction {
3031
*/
3132
'path'?: string;
3233
/**
33-
* Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.
34+
* IntOrString is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.
3435
*/
35-
'port': object;
36+
'port': IntOrString;
3637
/**
3738
* Scheme to use for connecting to the host. Defaults to HTTP.
3839
*/
@@ -59,7 +60,7 @@ export class V1HTTPGetAction {
5960
{
6061
"name": "port",
6162
"baseName": "port",
62-
"type": "object"
63+
"type": "IntOrString"
6364
},
6465
{
6566
"name": "scheme",

src/gen/model/v1NetworkPolicyPort.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
*/
1212

1313
import { RequestFile } from './models';
14+
import { IntOrString } from '../../types';
1415

1516
/**
1617
* NetworkPolicyPort describes a port to allow traffic on
@@ -21,9 +22,9 @@ export class V1NetworkPolicyPort {
2122
*/
2223
'endPort'?: number;
2324
/**
24-
* The port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers. If present, only traffic on the specified protocol AND port will be matched.
25+
* IntOrString is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.
2526
*/
26-
'port'?: object;
27+
'port'?: IntOrString;
2728
/**
2829
* The protocol (TCP, UDP, or SCTP) which traffic must match. If not specified, this field defaults to TCP.
2930
*/
@@ -40,7 +41,7 @@ export class V1NetworkPolicyPort {
4041
{
4142
"name": "port",
4243
"baseName": "port",
43-
"type": "object"
44+
"type": "IntOrString"
4445
},
4546
{
4647
"name": "protocol",

src/gen/model/v1PodDisruptionBudgetSpec.ts

+7-6
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,21 @@
1111
*/
1212

1313
import { RequestFile } from './models';
14+
import { IntOrString } from '../../types';
1415
import { V1LabelSelector } from './v1LabelSelector';
1516

1617
/**
1718
* PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.
1819
*/
1920
export class V1PodDisruptionBudgetSpec {
2021
/**
21-
* An eviction is allowed if at most \"maxUnavailable\" pods selected by \"selector\" are unavailable after the eviction, i.e. even in absence of the evicted pod. For example, one can prevent all voluntary evictions by specifying 0. This is a mutually exclusive setting with \"minAvailable\".
22+
* IntOrString is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.
2223
*/
23-
'maxUnavailable'?: object;
24+
'maxUnavailable'?: IntOrString;
2425
/**
25-
* An eviction is allowed if at least \"minAvailable\" pods selected by \"selector\" will still be available after the eviction, i.e. even in the absence of the evicted pod. So for example you can prevent all voluntary evictions by specifying \"100%\".
26+
* IntOrString is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.
2627
*/
27-
'minAvailable'?: object;
28+
'minAvailable'?: IntOrString;
2829
'selector'?: V1LabelSelector;
2930

3031
static discriminator: string | undefined = undefined;
@@ -33,12 +34,12 @@ export class V1PodDisruptionBudgetSpec {
3334
{
3435
"name": "maxUnavailable",
3536
"baseName": "maxUnavailable",
36-
"type": "object"
37+
"type": "IntOrString"
3738
},
3839
{
3940
"name": "minAvailable",
4041
"baseName": "minAvailable",
41-
"type": "object"
42+
"type": "IntOrString"
4243
},
4344
{
4445
"name": "selector",

src/gen/model/v1RollingUpdateDaemonSet.ts

+7-6
Original file line numberDiff line numberDiff line change
@@ -11,32 +11,33 @@
1111
*/
1212

1313
import { RequestFile } from './models';
14+
import { IntOrString } from '../../types';
1415

1516
/**
1617
* Spec to control the desired behavior of daemon set rolling update.
1718
*/
1819
export class V1RollingUpdateDaemonSet {
1920
/**
20-
* The maximum number of nodes with an existing available DaemonSet pod that can have an updated DaemonSet pod during during an update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up to a minimum of 1. Default value is 0. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their a new pod created before the old pod is marked as deleted. The update starts by launching new pods on 30% of nodes. Once an updated pod is available (Ready for at least minReadySeconds) the old DaemonSet pod on that node is marked deleted. If the old pod becomes unavailable for any reason (Ready transitions to false, is evicted, or is drained) an updated pod is immediatedly created on that node without considering surge limits. Allowing surge implies the possibility that the resources consumed by the daemonset on any given node can double if the readiness check fails, and so resource intensive daemonsets should take into account that they may cause evictions during disruption. This is beta field and enabled/disabled by DaemonSetUpdateSurge feature gate.
21+
* IntOrString is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.
2122
*/
22-
'maxSurge'?: object;
23+
'maxSurge'?: IntOrString;
2324
/**
24-
* The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0 if MaxSurge is 0 Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update.
25+
* IntOrString is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.
2526
*/
26-
'maxUnavailable'?: object;
27+
'maxUnavailable'?: IntOrString;
2728

2829
static discriminator: string | undefined = undefined;
2930

3031
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
3132
{
3233
"name": "maxSurge",
3334
"baseName": "maxSurge",
34-
"type": "object"
35+
"type": "IntOrString"
3536
},
3637
{
3738
"name": "maxUnavailable",
3839
"baseName": "maxUnavailable",
39-
"type": "object"
40+
"type": "IntOrString"
4041
} ];
4142

4243
static getAttributeTypeMap() {

src/gen/model/v1RollingUpdateDeployment.ts

+7-6
Original file line numberDiff line numberDiff line change
@@ -11,32 +11,33 @@
1111
*/
1212

1313
import { RequestFile } from './models';
14+
import { IntOrString } from '../../types';
1415

1516
/**
1617
* Spec to control the desired behavior of rolling update.
1718
*/
1819
export class V1RollingUpdateDeployment {
1920
/**
20-
* The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods.
21+
* IntOrString is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.
2122
*/
22-
'maxSurge'?: object;
23+
'maxSurge'?: IntOrString;
2324
/**
24-
* The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old ReplicaSet can be scaled down further, followed by scaling up the new ReplicaSet, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.
25+
* IntOrString is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.
2526
*/
26-
'maxUnavailable'?: object;
27+
'maxUnavailable'?: IntOrString;
2728

2829
static discriminator: string | undefined = undefined;
2930

3031
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
3132
{
3233
"name": "maxSurge",
3334
"baseName": "maxSurge",
34-
"type": "object"
35+
"type": "IntOrString"
3536
},
3637
{
3738
"name": "maxUnavailable",
3839
"baseName": "maxUnavailable",
39-
"type": "object"
40+
"type": "IntOrString"
4041
} ];
4142

4243
static getAttributeTypeMap() {

src/gen/model/v1ServicePort.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
*/
1212

1313
import { RequestFile } from './models';
14+
import { IntOrString } from '../../types';
1415

1516
/**
1617
* ServicePort contains information on service\'s port.
@@ -37,9 +38,9 @@ export class V1ServicePort {
3738
*/
3839
'protocol'?: string;
3940
/**
40-
* Number or name of the port to access on the pods targeted by the service. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. If this is a string, it will be looked up as a named port in the target Pod\'s container ports. If this is not specified, the value of the \'port\' field is used (an identity map). This field is ignored for services with clusterIP=None, and should be omitted or set equal to the \'port\' field. More info: https://kubernetes.io/docs/concepts/services-networking/service/#defining-a-service
41+
* IntOrString is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.
4142
*/
42-
'targetPort'?: object;
43+
'targetPort'?: IntOrString;
4344

4445
static discriminator: string | undefined = undefined;
4546

@@ -72,7 +73,7 @@ export class V1ServicePort {
7273
{
7374
"name": "targetPort",
7475
"baseName": "targetPort",
75-
"type": "object"
76+
"type": "IntOrString"
7677
} ];
7778

7879
static getAttributeTypeMap() {

src/gen/model/v1TCPSocketAction.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
*/
1212

1313
import { RequestFile } from './models';
14+
import { IntOrString } from '../../types';
1415

1516
/**
1617
* TCPSocketAction describes an action based on opening a socket
@@ -21,9 +22,9 @@ export class V1TCPSocketAction {
2122
*/
2223
'host'?: string;
2324
/**
24-
* Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.
25+
* IntOrString is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.
2526
*/
26-
'port': object;
27+
'port': IntOrString;
2728

2829
static discriminator: string | undefined = undefined;
2930

@@ -36,7 +37,7 @@ export class V1TCPSocketAction {
3637
{
3738
"name": "port",
3839
"baseName": "port",
39-
"type": "object"
40+
"type": "IntOrString"
4041
} ];
4142

4243
static getAttributeTypeMap() {

src/gen/model/v1beta1PodDisruptionBudgetSpec.ts

+7-6
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,21 @@
1111
*/
1212

1313
import { RequestFile } from './models';
14+
import { IntOrString } from '../../types';
1415
import { V1LabelSelector } from './v1LabelSelector';
1516

1617
/**
1718
* PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.
1819
*/
1920
export class V1beta1PodDisruptionBudgetSpec {
2021
/**
21-
* An eviction is allowed if at most \"maxUnavailable\" pods selected by \"selector\" are unavailable after the eviction, i.e. even in absence of the evicted pod. For example, one can prevent all voluntary evictions by specifying 0. This is a mutually exclusive setting with \"minAvailable\".
22+
* IntOrString is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.
2223
*/
23-
'maxUnavailable'?: object;
24+
'maxUnavailable'?: IntOrString;
2425
/**
25-
* An eviction is allowed if at least \"minAvailable\" pods selected by \"selector\" will still be available after the eviction, i.e. even in the absence of the evicted pod. So for example you can prevent all voluntary evictions by specifying \"100%\".
26+
* IntOrString is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.
2627
*/
27-
'minAvailable'?: object;
28+
'minAvailable'?: IntOrString;
2829
'selector'?: V1LabelSelector;
2930

3031
static discriminator: string | undefined = undefined;
@@ -33,12 +34,12 @@ export class V1beta1PodDisruptionBudgetSpec {
3334
{
3435
"name": "maxUnavailable",
3536
"baseName": "maxUnavailable",
36-
"type": "object"
37+
"type": "IntOrString"
3738
},
3839
{
3940
"name": "minAvailable",
4041
"baseName": "minAvailable",
41-
"type": "object"
42+
"type": "IntOrString"
4243
},
4344
{
4445
"name": "selector",

0 commit comments

Comments
 (0)