Chapter 7. Known issues
SKUPPER-1802 - skupper service status reports a service that doesn’t exist on the current site
If you disabled
service-syncon your network and expose a service on one site, theskupper service statuscommand reports those services as existing on all other sites even though that service does not exist on thoses sites.Workaround
To workaround this issue use
skupper service status -vto understand exposed services and availability.For example, on the
westsite:skupper service status
$ skupper service status Services exposed through Skupper: ╰─ backend:8080 (tcp)Copy to Clipboard Copied! Toggle word wrap Toggle overflow However, that service does not exist on the
westsite. Use the verbose output to show that the service only exists on theeastsite:Copy to Clipboard Copied! Toggle word wrap Toggle overflow SKUPPER-869 - Enable idle connection timeouts for the TCP transport
If an endpoint is terminated, for example a client is killed, the other endpoint observes a half-closed connection. If the other endpoint does not close the connection or attempt to send data to the connection, the Skupper router does not release the memory allocated to that connection
Workaround
Avoid client server configurations that use this behavior if possible. For example, if a server automatically closes dormant connections, or attempts to communicate with client, the Skupper router frees the memory when a client is terminated.
SKUPPER-805 - skupper init doesn’t work for ordinary user on OCP 3.11
Workaround
Two workarounds are available:
- Use YAML to configure a site.
-
Create a service account with the following permissions to run the
skupperCLI:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow You can save the YAML above to
role.yaml, apply it and bind the role to a username using:oc apply -f role.yaml oc policy add-role-to-user skupper-non-admin <username> -n <namespace-name> --role-namespace=<namespace-name>
$ oc apply -f role.yaml $ oc policy add-role-to-user skupper-non-admin <username> -n <namespace-name> --role-namespace=<namespace-name>Copy to Clipboard Copied! Toggle word wrap Toggle overflow