Skip to content

Commit

Permalink
etcd: use apt -o APT::Update::Error-Mode=any when updating pkg lists
Browse files Browse the repository at this point in the history
This was initially done in kubernetes#32602, but this pull request didn't change
all of the places where robustness tests called apt-get update.
  • Loading branch information
ivanvc committed Sep 10, 2024
1 parent d870e42 commit 2080bb1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions config/jobs/etcd/etcd-periodics.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ periodics:
- -c
- |
result=0
apt update && apt-get --yes install cmake libfuse3-dev libfuse3-3 fuse3
apt-get -o APT::Update::Error-Mode=any update && apt-get --yes install cmake libfuse3-dev libfuse3-3 fuse3
sed -i 's/#user_allow_other/user_allow_other/g' /etc/fuse.conf
make install-lazyfs
set -euo pipefail
Expand Down Expand Up @@ -261,7 +261,7 @@ periodics:
- -c
- |
result=0
apt update && apt-get --yes install cmake libfuse3-dev libfuse3-3 fuse3
apt-get -o APT::Update::Error-Mode=any update && apt-get --yes install cmake libfuse3-dev libfuse3-3 fuse3
sed -i 's/#user_allow_other/user_allow_other/g' /etc/fuse.conf
make install-lazyfs
set -euo pipefail
Expand Down Expand Up @@ -306,7 +306,7 @@ periodics:
- -c
- |
result=0
apt update && apt-get --yes install cmake libfuse3-dev libfuse3-3 fuse3
apt-get -o APT::Update::Error-Mode=any update && apt-get --yes install cmake libfuse3-dev libfuse3-3 fuse3
sed -i 's/#user_allow_other/user_allow_other/g' /etc/fuse.conf
make install-lazyfs
set -euo pipefail
Expand Down Expand Up @@ -351,7 +351,7 @@ periodics:
- -c
- |
result=0
apt update && apt-get --yes install cmake libfuse3-dev libfuse3-3 fuse3
apt-get -o APT::Update::Error-Mode=any update && apt-get --yes install cmake libfuse3-dev libfuse3-3 fuse3
sed -i 's/#user_allow_other/user_allow_other/g' /etc/fuse.conf
make install-lazyfs
set -euo pipefail
Expand Down Expand Up @@ -396,7 +396,7 @@ periodics:
- -c
- |
result=0
apt update && apt-get --yes install cmake libfuse3-dev libfuse3-3 fuse3
apt-get -o APT::Update::Error-Mode=any update && apt-get --yes install cmake libfuse3-dev libfuse3-3 fuse3
sed -i 's/#user_allow_other/user_allow_other/g' /etc/fuse.conf
make install-lazyfs
set -euo pipefail
Expand Down Expand Up @@ -441,7 +441,7 @@ periodics:
- -c
- |
result=0
apt update && apt-get --yes install cmake libfuse3-dev libfuse3-3 fuse3
apt-get -o APT::Update::Error-Mode=any update && apt-get --yes install cmake libfuse3-dev libfuse3-3 fuse3
sed -i 's/#user_allow_other/user_allow_other/g' /etc/fuse.conf
make install-lazyfs
set -euo pipefail
Expand Down

0 comments on commit 2080bb1

Please sign in to comment.