Conversation
|
@fgiorgetti I'm trying to address SKUPPER-2883 but don't want to add too much detail (eg docs currently don't include edge mode). Maybe that could be a separate doc? (given that it's not anything new users should tackle) |
input/kube-cli/site-configuration.md
Outdated
| ``` | ||
| ha: true | ||
| ``` | ||
| When high availability mode is enabled, multiple router pods are created so that traffic can continue if one pod restarts or is rescheduled. |
There was a problem hiding this comment.
two router pods (instead of multiple)?
There was a problem hiding this comment.
Maybe worth to say that it is useful in case a node crashes as well.
input/kube-cli/site-linking.md
Outdated
| The `link` resource YAML file contains the following information: | ||
| * The name of the link | ||
| * The certificate used to authenticate the link | ||
| * The host and port of the listening site. If the listening site uses high availability mode, two host and port entries are included. |
There was a problem hiding this comment.
Actually, not two host and port entries are added, but two Link resources are added.
There was a problem hiding this comment.
I wrote that based on the yaml i saw:
spec:
cost: 1
endpoints:
- group: skupper-router
host: 10.99.147.11
name: inter-router
port: "55671"
- group: skupper-router
host: 10.99.147.11
name: edge
port: "45671"
I'm trying to describe the yaml, not the resources, so i'll change to The link YAML file contains
that make more sense?
There was a problem hiding this comment.
I also added mention of two link resources being created
There was a problem hiding this comment.
Ah, I see. But when we have HA set, the resulting YAML will contain 2 Link resources, each one will have these 2 endpoints you have above, but one Link will be for the skupper-router group and the other one for group skupper-router-2 (as each one will have a different ingress to the cluster).
| The `link` YAML file contains the following information: | ||
| * The name of the link | ||
| * The certificate used to authenticate the link | ||
| * The host and port of the listening site. If the listening site uses high availability mode, two host and port entries are included and two link resources are created. |
There was a problem hiding this comment.
Yes, what I said earlier still applies. You will see 2 Link resources and each Link will have 2 endpoints.
No description provided.