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:
Miguel Martínez 2022-01-18 19:57:55 +01:00 committed by GitHub
parent 994c5882ab
commit 64a2126ea4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ spec:
protocol: TCP
targetPort: http
- name: https
port: 9443s
port: 9443
protocol: TCP
targetPort: https
type: ClusterIP