From d6f05e8bf1d6ba43d256ba9db551fec5780b3cf3 Mon Sep 17 00:00:00 2001 From: mvlassis Date: Thu, 28 Aug 2025 14:32:15 +0200 Subject: [PATCH 1/4] Add concierge.yaml --- concierge.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 concierge.yaml diff --git a/concierge.yaml b/concierge.yaml new file mode 100644 index 0000000..bfbf15a --- /dev/null +++ b/concierge.yaml @@ -0,0 +1,25 @@ +juju: + channel: 3.6/stable + +providers: + k8s: + enable: true + bootstrap: true + channel: 1.32-classic/stable + features: + local-storage: + load-balancer: + enabled: true + l2-mode: true + cidrs: 10.64.140.43/32 + bootstrap-constraints: + root-disk: 4G + + lxd: + enable: true + bootstrap: false + +host: + snaps: + charmcraft: + channel: 3.x/stable From 84cd57fd1479e8902204eee831606180caa3a346 Mon Sep 17 00:00:00 2001 From: mvlassis Date: Thu, 28 Aug 2025 14:32:17 +0200 Subject: [PATCH 2/4] Update setup operator environment step --- .github/workflows/integrate.yaml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 730e8ce..bf69573 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -63,14 +63,15 @@ jobs: steps: - name: Check out code uses: actions/checkout@v4 + - name: Install dependencies + run: pipx install tox - - name: Setup operator environment - uses: charmed-kubernetes/actions-operator@main - with: - provider: microk8s - channel: 1.32-strict/stable - juju-channel: 3.6/stable - charmcraft-channel: 3.x/stable + - name: Setup environment + run: | + sudo apt-get remove -y docker-ce docker-ce-cli containerd.io + sudo rm -rf /run/containerd + sudo snap install concierge --classic + sudo concierge prepare --trace - name: Run test run: | From cfe7fc9c349e01c60cbfe769f03b9ad19acc8b32 Mon Sep 17 00:00:00 2001 From: mvlassis Date: Fri, 29 Aug 2025 15:36:29 +0200 Subject: [PATCH 3/4] Update concierge.yaml --- concierge.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/concierge.yaml b/concierge.yaml index bfbf15a..fc4354b 100644 --- a/concierge.yaml +++ b/concierge.yaml @@ -8,16 +8,13 @@ providers: channel: 1.32-classic/stable features: local-storage: - load-balancer: - enabled: true - l2-mode: true - cidrs: 10.64.140.43/32 bootstrap-constraints: root-disk: 4G lxd: enable: true bootstrap: false + channel: latest/stable host: snaps: From e9f09f9e0c58fb22bfb4a88dc0693ced5a37b937 Mon Sep 17 00:00:00 2001 From: mvlassis Date: Fri, 29 Aug 2025 15:38:18 +0200 Subject: [PATCH 4/4] Update concierge.yaml --- concierge.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/concierge.yaml b/concierge.yaml index fc4354b..1760c13 100644 --- a/concierge.yaml +++ b/concierge.yaml @@ -1,5 +1,7 @@ juju: channel: 3.6/stable + model-defaults: + logging-config: =INFO; unit=DEBUG providers: k8s: