skupperproject / skupper-docs

Documentation for the Skupper project
https://skupper.io
5 stars 8 forks source link

podman expose #202

Closed pwright closed 5 days ago

pwright commented 9 months ago

be more explicit about specifying host, eg

Exposing a service from a podman site

If you are exposing a service that is running on the same host as your site, you need to specify an external IP address, not localhost. For example, determine the currently used IP address using the following command:

$ ip route get 8.8.8.8 | head -1 | awk ' {print $(NF-2) }'
10.32.241.97

Use the output to expose the service:

skupper expose host 10.32.241.97 --address backend --port 8080