From 20656e65856d573dee41fdd79a9fe3d962d0eac0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 18 Sep 2024 10:53:02 -0600 Subject: [PATCH] chore(deps): update uds-k3d to v0.9.0 (1.30.4 k3s), k3d to 5.7.4 (#770) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Update | Change | |---|---|---| | [defenseunicorns/uds-k3d](https://redirect.github.com/defenseunicorns/uds-k3d) | minor | `0.8.0` -> `0.9.0` | | ghcr.io/defenseunicorns/packages/uds-k3d | minor | `0.8.0` -> `0.9.0` | --- ### Release Notes
defenseunicorns/uds-k3d (defenseunicorns/uds-k3d) ### [`v0.9.0`](https://redirect.github.com/defenseunicorns/uds-k3d/releases/tag/v0.9.0) [Compare Source](https://redirect.github.com/defenseunicorns/uds-k3d/compare/v0.8.0...v0.9.0) ##### ⚠ BREAKING CHANGES - add extra port support ([#​103](https://redirect.github.com/defenseunicorns/uds-k3d/issues/103)) ##### Features - add extra port support ([#​103](https://redirect.github.com/defenseunicorns/uds-k3d/issues/103)) ([9299bc5](https://redirect.github.com/defenseunicorns/uds-k3d/commit/9299bc5bf4da40ffd6e30596d01e5a8b50793217)) ##### Miscellaneous - **deps:** update dev-stack to v0.0.29 ([#​102](https://redirect.github.com/defenseunicorns/uds-k3d/issues/102)) ([402b20e](https://redirect.github.com/defenseunicorns/uds-k3d/commit/402b20eb32cac3f19b0bc4cbc49e9578a60dca49)) - **deps:** update githubactions ([#​94](https://redirect.github.com/defenseunicorns/uds-k3d/issues/94)) ([fda8d99](https://redirect.github.com/defenseunicorns/uds-k3d/commit/fda8d99ce4925822e2bbfbe2610aa928e306182d)) - **deps:** update githubactions ([#​96](https://redirect.github.com/defenseunicorns/uds-k3d/issues/96)) ([a730642](https://redirect.github.com/defenseunicorns/uds-k3d/commit/a730642d76d2ada2695350ac360a9e3bd8d86847)) - **deps:** update githubactions to v0.12.0 ([#​101](https://redirect.github.com/defenseunicorns/uds-k3d/issues/101)) ([d110f93](https://redirect.github.com/defenseunicorns/uds-k3d/commit/d110f937a2c07e3fc107bcf1a01f2b56ea7a3130)) - **deps:** update metallb to v0.14.8 ([#​93](https://redirect.github.com/defenseunicorns/uds-k3d/issues/93)) ([b9c61c6](https://redirect.github.com/defenseunicorns/uds-k3d/commit/b9c61c625447ce2894a6660c6c207cf5b5258b8c)) - **docs:** graceful k3d shutdown and startup ([#​100](https://redirect.github.com/defenseunicorns/uds-k3d/issues/100)) ([876a19b](https://redirect.github.com/defenseunicorns/uds-k3d/commit/876a19b6984d9269354d6618befc819e3adaa006)) - fix codeowners ([#​97](https://redirect.github.com/defenseunicorns/uds-k3d/issues/97)) ([6daf597](https://redirect.github.com/defenseunicorns/uds-k3d/commit/6daf597ef0872e53c29c431a44aa45e9bbb2d663)) - update k3s test versions, default to 1.30.4 ([#​104](https://redirect.github.com/defenseunicorns/uds-k3d/issues/104)) ([1aa5cb3](https://redirect.github.com/defenseunicorns/uds-k3d/commit/1aa5cb3489e0df6e9115dad1b11baffb55ca7409))
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/defenseunicorns/uds-core). --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Micah Nagel --- .github/actions/debug-output/action.yaml | 10 +++++----- .github/actions/setup/action.yaml | 3 ++- bundles/k3d-slim-dev/uds-bundle.yaml | 2 +- bundles/k3d-standard/uds-bundle.yaml | 2 +- tasks/setup.yaml | 2 +- 5 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/actions/debug-output/action.yaml b/.github/actions/debug-output/action.yaml index e0fc26536..106319e4a 100644 --- a/.github/actions/debug-output/action.yaml +++ b/.github/actions/debug-output/action.yaml @@ -7,18 +7,18 @@ runs: - name: Print basic debug info for a k8s cluster run: | echo "::group::kubectl get all" - uds zarf tools kubectl get all -A | tee /tmp/debug-k-get-all.log + uds zarf tools kubectl get all -A | tee /tmp/debug-k-get-all.log || true echo "::endgroup::" echo "::group::kubectl get pv,pvc" - uds zarf tools kubectl get pv,pvc -A | tee /tmp/debug-k-get-pv-pvc.log + uds zarf tools kubectl get pv,pvc -A | tee /tmp/debug-k-get-pv-pvc.log || true echo "::endgroup::" echo "::group::kubectl get package" - uds zarf tools kubectl get package -A | tee /tmp/debug-k-get-package.log + uds zarf tools kubectl get package -A | tee /tmp/debug-k-get-package.log || true echo "::endgroup::" echo "::group::kubectl get events" - uds zarf tools kubectl get events -A --sort-by='.lastTimestamp' | tee /tmp/debug-k-get-events.log + uds zarf tools kubectl get events -A --sort-by='.lastTimestamp' | tee /tmp/debug-k-get-events.log || true echo "::endgroup::" echo "::group::kubectl describe nodes" - uds zarf tools kubectl describe nodes k3d-uds-server-0 | tee /tmp/debug-k-describe-node.log + uds zarf tools kubectl describe nodes k3d-uds-server-0 | tee /tmp/debug-k-describe-node.log || true echo "::endgroup::" shell: bash diff --git a/.github/actions/setup/action.yaml b/.github/actions/setup/action.yaml index f8dc2c4be..05b90f9a3 100644 --- a/.github/actions/setup/action.yaml +++ b/.github/actions/setup/action.yaml @@ -25,7 +25,8 @@ runs: - name: Install k3d shell: bash - run: curl -s https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh | TAG=v5.6.0 bash + # renovate: datasource=github-tags depName=k3d-io/k3d versioning=semver + run: curl -s https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh | TAG=v5.7.4 bash - name: Set up Homebrew uses: Homebrew/actions/setup-homebrew@master diff --git a/bundles/k3d-slim-dev/uds-bundle.yaml b/bundles/k3d-slim-dev/uds-bundle.yaml index 10ac3f9f5..d2d2fd272 100644 --- a/bundles/k3d-slim-dev/uds-bundle.yaml +++ b/bundles/k3d-slim-dev/uds-bundle.yaml @@ -9,7 +9,7 @@ metadata: packages: - name: uds-k3d-dev repository: ghcr.io/defenseunicorns/packages/uds-k3d - ref: 0.8.0 + ref: 0.9.0 overrides: uds-dev-stack: minio: diff --git a/bundles/k3d-standard/uds-bundle.yaml b/bundles/k3d-standard/uds-bundle.yaml index bc6445118..0a5376c0d 100644 --- a/bundles/k3d-standard/uds-bundle.yaml +++ b/bundles/k3d-standard/uds-bundle.yaml @@ -9,7 +9,7 @@ metadata: packages: - name: uds-k3d-dev repository: ghcr.io/defenseunicorns/packages/uds-k3d - ref: 0.8.0 + ref: 0.9.0 overrides: uds-dev-stack: minio: diff --git a/tasks/setup.yaml b/tasks/setup.yaml index a6e5a11b8..6a64f78e7 100644 --- a/tasks/setup.yaml +++ b/tasks/setup.yaml @@ -3,7 +3,7 @@ tasks: actions: - description: "Create the K3d cluster" # renovate: datasource=github-tags depName=defenseunicorns/uds-k3d versioning=semver - cmd: "uds zarf package deploy oci://defenseunicorns/uds-k3d:0.8.0 --confirm --no-progress" + cmd: "uds zarf package deploy oci://defenseunicorns/uds-k3d:0.9.0 --confirm --no-progress" - name: k3d-test-cluster actions: