chore: Disable firewall during nightly package tests (#14652)
This commit is contained in:
parent
3b35c8137f
commit
375caaa1d8
|
|
@ -142,7 +142,7 @@ jobs:
|
||||||
arch: "386"
|
arch: "386"
|
||||||
test-integration:
|
test-integration:
|
||||||
machine:
|
machine:
|
||||||
image: ubuntu-2004:current
|
image: ubuntu-2204:current
|
||||||
resource_class: large
|
resource_class: large
|
||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
|
|
@ -355,7 +355,7 @@ jobs:
|
||||||
--acl public-read
|
--acl public-read
|
||||||
docker-nightly:
|
docker-nightly:
|
||||||
machine:
|
machine:
|
||||||
image: ubuntu-2004:current
|
image: ubuntu-2204:current
|
||||||
steps:
|
steps:
|
||||||
- run:
|
- run:
|
||||||
name: login to quay.io
|
name: login to quay.io
|
||||||
|
|
@ -381,7 +381,7 @@ jobs:
|
||||||
docker push quay.io/influxdb/telegraf-nightly:alpine
|
docker push quay.io/influxdb/telegraf-nightly:alpine
|
||||||
amd64-package-test-nightly:
|
amd64-package-test-nightly:
|
||||||
machine:
|
machine:
|
||||||
image: ubuntu-2004:current
|
image: ubuntu-2204:current
|
||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
- attach_workspace:
|
- attach_workspace:
|
||||||
|
|
|
||||||
|
|
@ -22,8 +22,26 @@ networks:
|
||||||
- name: incusbr0
|
- name: incusbr0
|
||||||
type: bridge
|
type: bridge
|
||||||
config:
|
config:
|
||||||
ipv4.address: auto
|
ipv4.address: 192.168.100.1/24
|
||||||
|
ipv4.nat: true
|
||||||
ipv6.address: none
|
ipv6.address: none
|
||||||
|
storage_pools:
|
||||||
|
- name: default
|
||||||
|
driver: dir
|
||||||
|
profiles:
|
||||||
|
- name: default
|
||||||
|
devices:
|
||||||
|
eth0:
|
||||||
|
name: eth0
|
||||||
|
network: incusbr0
|
||||||
|
type: nic
|
||||||
|
root:
|
||||||
|
path: /
|
||||||
|
pool: default
|
||||||
|
type: disk
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
# Disable the firewall to prevent issues with the default configuration.
|
||||||
|
sudo ufw disable
|
||||||
|
|
||||||
sudo usermod -a -G incus-admin "$(whoami)"
|
sudo usermod -a -G incus-admin "$(whoami)"
|
||||||
|
|
|
||||||
|
|
@ -12,9 +12,7 @@ import (
|
||||||
var imagesRPM = []string{
|
var imagesRPM = []string{
|
||||||
"fedora/39",
|
"fedora/39",
|
||||||
"fedora/38",
|
"fedora/38",
|
||||||
"centos/7",
|
|
||||||
"centos/9-Stream",
|
"centos/9-Stream",
|
||||||
"amazonlinux/2",
|
|
||||||
//"opensuse/15.3", // shadow-utils dependency bug see #3833
|
//"opensuse/15.3", // shadow-utils dependency bug see #3833
|
||||||
//"opensuse/tumbleweed", // shadow-utils dependency bug see #3833
|
//"opensuse/tumbleweed", // shadow-utils dependency bug see #3833
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue