From bdd2d8deeba10c1204af45b4eb99a3415feea1a8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 10 Oct 2024 16:54:09 +0000 Subject: [PATCH 1/7] chore(deps): update actions/upload-artifact digest to b4b15b8 --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2283482..b5681c2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -57,7 +57,7 @@ jobs: BUILD_ARGS: "--load" - name: Publish Artifacts to GitHub - uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4 + uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4 with: name: output path: _output/** From 167453bab455cb59de2bf9f246106f9ae593ee9d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 16 Sep 2024 04:54:05 +0000 Subject: [PATCH 2/7] chore(deps): update reviewdog/action-yamllint action to v1.19.0 --- .github/workflows/yamllint.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/yamllint.yaml b/.github/workflows/yamllint.yaml index 23d2dad..d827368 100644 --- a/.github/workflows/yamllint.yaml +++ b/.github/workflows/yamllint.yaml @@ -7,7 +7,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 - name: yamllint - uses: reviewdog/action-yamllint@4e4ba96d03a0e12a0e71c29e5fef1db309d09201 # v1.18.0 + uses: reviewdog/action-yamllint@e09f07780388032a624e9eb44a23fd1bbb4052cc # v1.19.0 with: reporter: github-pr-review filter_mode: nofilter From 66462b6ab7731001ab4d581945a9a6aff103cec9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 17 Sep 2024 16:55:01 +0000 Subject: [PATCH 3/7] chore(deps): update dependency upbound/configuration-azure-aks to v0.9.0 --- crossplane.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crossplane.yaml b/crossplane.yaml index 4f31ed0..b98d57d 100644 --- a/crossplane.yaml +++ b/crossplane.yaml @@ -41,7 +41,7 @@ spec: version: "v0.9.0" - configuration: xpkg.upbound.io/upbound/configuration-azure-aks # renovate: datasource=github-releases depName=upbound/configuration-azure-aks - version: "v0.8.0" + version: "v0.9.0" - configuration: xpkg.upbound.io/upbound/configuration-azure-database # renovate: datasource=github-releases depName=upbound/configuration-azure-database version: "v0.12.0" From e69fda8c49d60787d00fdeef7fdaadbcce6f79de Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 20 Sep 2024 14:23:10 +0000 Subject: [PATCH 4/7] chore(deps): update dependency upbound/uptest to v0.12.0 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 72ede00..e3c8f31 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ PLATFORMS ?= linux_amd64 UP_VERSION = v0.31.0 UP_CHANNEL = stable -UPTEST_VERSION = v0.11.1 +UPTEST_VERSION = v0.12.0 -include build/makelib/k8s_tools.mk # ==================================================================================== From f77bcfa5dcd472e5269fc34fcfaeec7d5fe5d140 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20K=C3=A4sser?= Date: Mon, 21 Oct 2024 09:44:07 +0200 Subject: [PATCH 5/7] Provide full urls to examples in readme --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3de5f87..5a4c0c3 100644 --- a/README.md +++ b/README.md @@ -159,12 +159,12 @@ the application code. In our example here we simply create the claims directly: Create a custom defined cluster: ```console -kubectl apply -f examples/cluster-claim.yaml +kubectl apply -f https://raw.githubusercontent.com/upbound/platform-ref-azure/main/examples/cluster-claim.yaml ``` Create a custom defined database: ```console -kubectl apply -f examples/mariadb-claim.yaml +kubectl apply -f https://raw.githubusercontent.com/upbound/platform-ref-azure/main/examples/mariadb-claim.yaml ``` **NOTE**: The database abstraction relies on the cluster claim to be ready - it @@ -173,7 +173,7 @@ uses the same network to have connectivity with the AKS cluster. Now deploy the sample application: ``` -kubectl apply -f examples/app-claim.yaml +kubectl apply -f https://raw.githubusercontent.com/upbound/platform-ref-azure/main/examples/app-claim.yaml ``` **NOTE**: application has a strong dependency on mariadb type of the database @@ -195,7 +195,7 @@ crossplane beta trace cluster.aws.platformref.upbound.io/platform-ref-aws To delete the provisioned resources you would simply delete the claims again: ```console -kubectl delete -f examples/cluster-claim.yaml,examples/mariadb-claim.yaml,examples/app-claim.yaml +kubectl delete -f https://raw.githubusercontent.com/upbound/platform-ref-azure/main/examples/cluster-claim.yaml,https://raw.githubusercontent.com/upbound/platform-ref-azure/main/examples/mariadb-claim.yaml,https://raw.githubusercontent.com/upbound/platform-ref-azure/main/examples/app-claim.yaml ``` To uninstall the provider & platform configuration: From 92a39c82a64aba52af2b6ef26824e12b7c33feb1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 5 Nov 2024 00:15:17 +0000 Subject: [PATCH 6/7] chore(deps): update actions/checkout digest to 11bd719 --- .github/workflows/ci.yaml | 2 +- .github/workflows/tag.yml | 2 +- .github/workflows/yamllint.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b5681c2..e9540b0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -42,7 +42,7 @@ jobs: install: true - name: Checkout - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 with: submodules: true diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index d3acb0a..eb4c74d 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - name: Create Tag uses: negz/create-tag@39bae1e0932567a58c20dea5a1a0d18358503320 # v1 diff --git a/.github/workflows/yamllint.yaml b/.github/workflows/yamllint.yaml index d827368..a8d64c1 100644 --- a/.github/workflows/yamllint.yaml +++ b/.github/workflows/yamllint.yaml @@ -5,7 +5,7 @@ jobs: name: runner / yamllint runs-on: ubuntu-latest steps: - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - name: yamllint uses: reviewdog/action-yamllint@e09f07780388032a624e9eb44a23fd1bbb4052cc # v1.19.0 with: From 841b14ceb1c4d8aca63fa15a907afba8dd733e41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20K=C3=A4sser?= Date: Mon, 18 Nov 2024 10:22:45 +0100 Subject: [PATCH 7/7] Revert uptest change --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e3c8f31..72ede00 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ PLATFORMS ?= linux_amd64 UP_VERSION = v0.31.0 UP_CHANNEL = stable -UPTEST_VERSION = v0.12.0 +UPTEST_VERSION = v0.11.1 -include build/makelib/k8s_tools.mk # ====================================================================================