Hello Jenkins Builder,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/osmo-ci/+/30476
to look at the new patch set (#3).
Change subject: ansible/podman: add cronjob to clean old images
......................................................................
ansible/podman: add cronjob to clean old images
Related: OS#5365
Related: https://osmocom.org/projects/osmocom-servers/wiki/Docker_cache_clean_up
Change-Id: Ib3c7575943b842b6b5a15967c59fa8d0a9b2d6f5
---
M ansible/roles/podman/tasks/main.yml
1 file changed, 11 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/76/30476/3
--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/30476
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: Ib3c7575943b842b6b5a15967c59fa8d0a9b2d6f5
Gerrit-Change-Number: 30476
Gerrit-PatchSet: 3
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-MessageType: newpatchset
Hello Jenkins Builder,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/osmo-ci/+/30478
to look at the new patch set (#2).
Change subject: ansible/podman: configure storage driver vfs
......................................................................
ansible/podman: configure storage driver vfs
Use vfs instead of the default fuse based driver so we don't need to
ensure that the host system has the fuse kernel module loaded and passes
the fuse device into the lxc, where we are running the ansible rules and
podman.
Related: OS#5365
Change-Id: Ifcea205dad414905a10942735a135aa3f2fb6e95
---
A ansible/roles/podman/files/storage.conf
M ansible/roles/podman/tasks/main.yml
M ansible/setup-jenkins-slave.yml
3 files changed, 11 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/78/30478/2
--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/30478
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: Ifcea205dad414905a10942735a135aa3f2fb6e95
Gerrit-Change-Number: 30478
Gerrit-PatchSet: 2
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-MessageType: newpatchset
osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ci/+/30471 )
Change subject: repo-install-test: disable ProtectHome option
......................................................................
repo-install-test: disable ProtectHome option
Comment out the ProtectHome option in systemd service files, as it
doesn't work when repo-install-test runs with podman.
Fix for:
osmo-hlr.service: Failed to set up mount namespacing: Operation not supported
Related: OS#5365
Change-Id: I394918fc61de36acce65ffb33defcb8fc21801c4
---
M scripts/repo-install-test/run-inside-podman.sh
1 file changed, 5 insertions(+), 3 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/71/30471/1
diff --git a/scripts/repo-install-test/run-inside-podman.sh b/scripts/repo-install-test/run-inside-podman.sh
index b70f894..90c2f76 100755
--- a/scripts/repo-install-test/run-inside-podman.sh
+++ b/scripts/repo-install-test/run-inside-podman.sh
@@ -380,9 +380,11 @@
services_feed="$services_feed $SERVICES_NIGHTLY"
fi
- # Disable CPUScheduling in systemd services, doesn't work inside podman
- for i in $(grep -rl "^CPUScheduling" /lib/systemd/system); do
- sed -i 's/^CPUScheduling/# CPUScheduling/g' "$i"
+ # Disable options in systemd services that don't work inside podman
+ for opt in CPUScheduling ProtectHome; do
+ for i in $(grep -rl "^$opt" /lib/systemd/system); do
+ sed -i "s/^$opt/# $opt/g" "$i"
+ done
done
systemctl daemon-reload
--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/30471
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I394918fc61de36acce65ffb33defcb8fc21801c4
Gerrit-Change-Number: 30471
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-MessageType: newchange