From 781eb19d33cd5135a6b2086bc7b000e1f3a3866a Mon Sep 17 00:00:00 2001 From: danthegoodman1 Date: Mon, 16 Aug 2021 18:34:59 -0400 Subject: [PATCH] Update v1ServicePort['targetPort'] to correct type --- src/gen/model/v1ServicePort.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gen/model/v1ServicePort.ts b/src/gen/model/v1ServicePort.ts index ef4d3f3bdd..e80f683054 100644 --- a/src/gen/model/v1ServicePort.ts +++ b/src/gen/model/v1ServicePort.ts @@ -39,7 +39,7 @@ export class V1ServicePort { /** * 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 */ - 'targetPort'?: object; + 'targetPort'?: number; static discriminator: string | undefined = undefined;