This repository has been archived by the owner on Jan 8, 2023. It is now read-only.
How to use molecule-podman in order to simulate multiple instance whitin a network? #120
Unanswered
bioinfornatics
asked this question in
General
Replies: 2 comments 4 replies
-
I found some interesting information from file molecule-podman/src/molecule_podman/driver.py So currently I have this: driver:
name: podman
platforms:
- name: ipa
image: quay.io/freeipa/freeipa-server:rocky-8-4.9.6
pre_build_image: true
privileged: false
network: msio_ipa
subnet: 10.0.1.0/16
# ip: 10.0.1.1
hostname: ipa.msio.test
command: ipa-server-install -U --realm=MSIO.TEST --domain=msio.test --ds-password=IsASecret --admin-password=IsASecret --hostname=ipa.msio.test
- name: client1
image: quay.io/rockylinux/rockylinux
pre_build_image: true
privileged: false
network: msio_ipa
subnet: 10.0.1.0/16
# ip: 10.0.1.2
hostname: client1.msio.test
groups:
- all
- client I do not know yet if that will works yet, as I am stuck on the road. ERROR LOG
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Replying here instead of irc as it's easier for cut&paste. I've tested on top of PR119:
Also with:
In both cases the |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Dear,
I would like to test my
freeipa
server and ipa client recipe deployment withmolecule podman
.Thus to my understanding with
podman
as a rootless container runner we have to use a pod.Could you show us an example which involve multiple instance with in network pod using
podman
please ?With molecule-docker usually we define into molecule.yml something close to this:
Thanks for you help
Best regards
Beta Was this translation helpful? Give feedback.
All reactions