kumahq / kuma-website

🐻 The official website for Kuma, the control plane for modern service connectivity.
https://kuma.io
Apache License 2.0
103 stars 86 forks source link

docs(production): clarify port number in kube service #1680

Closed jakubdyszkiewicz closed 4 months ago

jakubdyszkiewicz commented 4 months ago

Clarify that admission server on 5443 is exposed on 443

netlify[bot] commented 4 months ago

Deploy Preview for kuma ready!

Name Link
Latest commit 6c2b537e48423351821fa72b391eb98c012ac3c3
Latest deploy log https://app.netlify.com/sites/kuma/deploys/65e85ecd9e9cbf00080d88ee
Deploy Preview https://deploy-preview-1680--kuma.netlify.app
Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

cbugneac-nex commented 4 months ago

For more context, here is Kume 2.6.1 CP service definition:

$ kubectl get svc kuma-control-plane -o yaml
...
spec:
  ports:
...
  - appProtocol: https
    name: https-admission-server
    port: 443
    protocol: TCP
    targetPort: 5443
...

Looks like the service is listening on port 443 but forwarding to pod port 5443.

cbugneac-nex commented 4 months ago

Thanks @lahabana