-
Hey there! [Short version] I don't think the [Long version] Like always, I'm still trying to run an app that needs to run several instances of itself, called nodes in order for it to work. Here's what I happens:
The root node is started first and the join nodes are to connect with the root node. So I then try to investigate by using
To my astonishment, the node didn't timeout and then I exited and did the following:
What's going on here!? Here are the debug_node's ip addresses:
And here are the join_node_1's ip addresses:
So that raises the question, how do I assign these IPs and what does podman do with it? This is my run script:
As you can see, I have assigned And just to be sure all containers belong to the pod:
And here's my network information:
I can also not use
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Can you provide a |
Beta Was this translation helpful? Give feedback.
-
I have a podman inspect of two containers, root_node and join_node_1. Actual podname is pod_sjefolaht_ipv4 https://gist.github.com/Folaht/ac447058f08a6a89a2b79029d085230d [update] Here are all the differences I found: root_node
join_node_1
root_node
join_node_1
|
Beta Was this translation helpful? Give feedback.
-
I found the answer. There still was a |
Beta Was this translation helpful? Give feedback.
I found the answer.
There still was a
--network
parameter in thepodman run
command of the join nodes from before I started to usepodman pod
.It was only deleted in the print command.