Replies: 3 comments 8 replies
-
I assume you need to manually create the bootstrap toml. How do you collect the info to create a valid toml? |
Beta Was this translation helpful? Give feedback.
-
Is there an easy way to create this toml upon and store that into the file system of the container. This way, users can instantiate flux start without worrying about the manual creation of the toml. |
Beta Was this translation helpful? Give feedback.
-
My other question is: will this recipe work on my Mac Laptop where I run Docker Desktop that comes with Kubernetes? |
Beta Was this translation helpful? Give feedback.
-
I've gotten a simple test setup working that runs Flux in pods managed by OpenShift. I used a deployment for replicating the pods to simulate Flux instances running across multiple nodes. The config is essentially the same as a Kubernetes spec:
Note the
command
andargs
parameters. These allow the containers to keep running, otherwise they will exit immediately upon container startup. Now the bootstrap config is as you would expect if the containers were physical hosts (i.e. use the pod IPs, NICs, and names):To start the Flux instances issue the following command in each container:
Now to test that they can communicate, run the following on rank0:
Beta Was this translation helpful? Give feedback.
All reactions