File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ TLSE_ENABLED=${TLSE_ENABLED:-false}
27
27
CLOUD_DOMAIN=${CLOUD_DOMAIN:- localdomain}
28
28
TELEMETRY_ENABLED=${TELEMETRY_ENABLED:- true}
29
29
OCTAVIA_ENABLED=${OCTAVIA_ENABLED:- false}
30
+ IPA_IMAGE=${IPA_IMAGE:- " quay.io/freeipa/freeipa-server:fedora-41" }
30
31
31
32
# Use the files created in the previous steps including the network_data.yaml file and thw deployed_network.yaml file.
32
33
# The deployed_network.yaml file hard codes the IPs and VIPs configured from the network.sh
@@ -154,7 +155,7 @@ if [ "$TLSE_ENABLED" = "true" ]; then
154
155
-h $IPA_SERVER_HOSTNAME \
155
156
--read-only --tmpfs /run --tmpfs /tmp \
156
157
-v /sys/fs/cgroup:/sys/fs/cgroup:ro \
157
- -v /tmp/ipa-data:/data:Z quay.io/freeipa/freeipa-server:fedora-39 no-exit \
158
+ -v /tmp/ipa-data:/data:Z " $IPA_IMAGE " no-exit \
158
159
-U -r $IPA_REALM --setup-dns --no-reverse --no-ntp \
159
160
--no-dnssec-validation --auto-forwarders
160
161
timeout 900s grep -qEi ' (INFO The ipa-server-install command was successful|ERROR The ipa-server-install command failed)' <( tail -F /tmp/ipa-data/var/log/ipaserver-install.log)
Original file line number Diff line number Diff line change @@ -185,6 +185,7 @@ if [ "$TLSE_ENABLED" = "true" ]; then
185
185
export IPA_REALM=$( echo $IPA_DOMAIN | awk ' {print toupper($0)}' )
186
186
export IPA_HOST=ipa.$IPA_DOMAIN
187
187
export IPA_SERVER_HOSTNAME=$IPA_HOST
188
+ export IPA_IMAGE=${IPA_IMAGE:- " quay.io/freeipa/freeipa-server:fedora-41" }
188
189
sudo mkdir /tmp/ipa-data
189
190
sudo podman run -d --name freeipa-server-container \
190
191
--sysctl net.ipv6.conf.lo.disable_ipv6=0 \
@@ -198,7 +199,7 @@ if [ "$TLSE_ENABLED" = "true" ]; then
198
199
-p 88:88/udp -p 464:464/udp \
199
200
--read-only --tmpfs /run --tmpfs /tmp \
200
201
-v /sys/fs/cgroup:/sys/fs/cgroup:ro \
201
- -v /tmp/ipa-data:/data:Z quay.io/freeipa/freeipa-server:fedora-39 no-exit \
202
+ -v /tmp/ipa-data:/data:Z " $IPA_IMAGE " no-exit \
202
203
-U -r $IPA_REALM --setup-dns --no-reverse --no-ntp \
203
204
--no-dnssec-validation --auto-forwarders
204
205
timeout 900s grep -qEi ' (INFO The ipa-server-install command was successful|ERROR The ipa-server-install command failed)' <( sudo tail -F /tmp/ipa-data/var/log/ipaserver-install.log)
You can’t perform that action at this time.
0 commit comments