website/docs: fix typo in port mapping in manifest (#2103)
Otherwise it causes: ``` error: error validating "outpost.yaml": error validating data: ValidationError(Service.spec.ports[1].port): invalid type for io.k8s.api.core.v1.ServicePort.port: got "string", expected "integer"; if you choose to ignore these errors, turn validation off with --validate=false ```
This commit is contained in:
parent
994c5882ab
commit
64a2126ea4
|
@ -38,7 +38,7 @@ spec:
|
|||
protocol: TCP
|
||||
targetPort: http
|
||||
- name: https
|
||||
port: 9443s
|
||||
port: 9443
|
||||
protocol: TCP
|
||||
targetPort: https
|
||||
type: ClusterIP
|
||||
|
|
Reference in New Issue