Skip to content

Commit

Permalink
seslib: Ignore Podman 2.2.1 in octopus
Browse files Browse the repository at this point in the history
Ignore Podman 2.2.1 in `octopus` as it contains an unfixed bug that, in
conjunction with using `--network=host` leads to an `/etc/hosts` entry
being added which confuses Pythons `socket.getfqdn()` function and leads
to inaccessible links in `ceph mgr services`.

Fixes: #633

Signed-off-by: Patrick Seidensal <[email protected]>
  • Loading branch information
p-se committed Mar 3, 2022
1 parent 999d29b commit d0ffbec
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions seslib/templates/salt/ceph-salt/deployment_day_1.sh.j2
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@

set -ex

{% if version == 'octopus' %}
# https://github.com/SUSE/sesdev/issues/633
zypper addlock "podman == 2.2.1"
{% endif %}

{% if ceph_salt_git_repo and ceph_salt_git_branch %}
# install ceph-salt
cd /root
Expand Down

0 comments on commit d0ffbec

Please sign in to comment.