From ed18c2bf157b78b109297067a9dc77699a9904cb Mon Sep 17 00:00:00 2001 From: milindchawre Date: Thu, 2 May 2024 19:36:04 +0530 Subject: [PATCH 01/22] Fixes #710 - Add uninstall script for spinkube --- spinkube/uninstall.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 spinkube/uninstall.sh diff --git a/spinkube/uninstall.sh b/spinkube/uninstall.sh new file mode 100644 index 00000000..df14a2bc --- /dev/null +++ b/spinkube/uninstall.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +# Uninstall Spin Operator using Helm +helm uninstall spin-operator --namespace spin-operator + +# Uninstall all resources related to spin-operator including CRD resources +kubectl delete -f https://github.com/spinkube/spin-operator/releases/download/v0.1.0/spin-operator.runtime-class.yaml +kubectl delete -f https://github.com/spinkube/spin-operator/releases/download/v0.1.0/spin-operator.crds.yaml +kubectl delete -f https://github.com/spinkube/spin-operator/releases/download/v0.1.0/spin-operator.shim-executor.yaml + +# Delete Namespace +kubectl delete ns spin-operator \ No newline at end of file From 10408b5c739ba3e1954105d06b3b99fe708f3cf0 Mon Sep 17 00:00:00 2001 From: updatecli Date: Thu, 9 May 2024 06:07:56 +0000 Subject: [PATCH 02/22] chore: Update rabbitmq /manifest.yaml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- rabbitmq/manifest.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rabbitmq/manifest.yaml b/rabbitmq/manifest.yaml index bd382001..337be271 100644 --- a/rabbitmq/manifest.yaml +++ b/rabbitmq/manifest.yaml @@ -1,7 +1,7 @@ --- title: RabbitMQ name: rabbitmq -version: 3.13.1-management +version: 3.13.2-management maintainer: habil@bozali.com description: RabbitMQ is an open-source message-broker software that originally implemented the Advanced Message Queuing Protocol. url: https://www.rabbitmq.com/ From 8851100579838f85bbc06d655a4a30fc5435d601 Mon Sep 17 00:00:00 2001 From: updatecli Date: Thu, 9 May 2024 06:07:58 +0000 Subject: [PATCH 03/22] chore: Update rabbitmq/app.yaml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- rabbitmq/app.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rabbitmq/app.yaml b/rabbitmq/app.yaml index ad1de54b..231786a8 100644 --- a/rabbitmq/app.yaml +++ b/rabbitmq/app.yaml @@ -29,7 +29,7 @@ spec: spec: containers: - name: rabbitmq - image: rabbitmq:3.13.1-management + image: rabbitmq:3.13.2-management imagePullPolicy: Always ports: - containerPort: 5672 From df126080e5ff0a5af743e7944c9a797097a40d3b Mon Sep 17 00:00:00 2001 From: updatecli Date: Thu, 9 May 2024 06:08:19 +0000 Subject: [PATCH 04/22] chore: Update jenkins install.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- jenkins/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/install.sh b/jenkins/install.sh index 25df1f22..089f071d 100755 --- a/jenkins/install.sh +++ b/jenkins/install.sh @@ -5,6 +5,6 @@ helm repo update kubectl create namespace jenkins -helm install jenkins jenkins/jenkins --version 5.1.6 --namespace jenkins --set persistence.size=${VOLUME_SIZE} \ +helm install jenkins jenkins/jenkins --version 5.1.12 --namespace jenkins --set persistence.size=${VOLUME_SIZE} \ --set controller.admin.username=${JENKINS_USERNAME} \ --set controller.admin.password=${JENKINS_PASSWORD} From 64243c81e3f99f256d883abe22d4e2bbadfc1584 Mon Sep 17 00:00:00 2001 From: updatecli Date: Thu, 9 May 2024 06:09:45 +0000 Subject: [PATCH 05/22] chore: Update keda/manifest.yaml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- keda/manifest.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keda/manifest.yaml b/keda/manifest.yaml index 0a191261..f6fb5e59 100644 --- a/keda/manifest.yaml +++ b/keda/manifest.yaml @@ -1,6 +1,6 @@ name: keda title: "KEDA" -version: 2.13.1 +version: 2.14.0 maintainer: engin.diri@pulumi.com description: KEDA is a Kubernetes-based Event Driven Autoscaler. With KEDA, you can scale any container in Kubernetes based on the number of events needing to be processed. url: https://keda.sh/ From 3831c4d6394c241d51de7e1c7faec326862c298b Mon Sep 17 00:00:00 2001 From: updatecli Date: Thu, 9 May 2024 06:09:47 +0000 Subject: [PATCH 06/22] chore: Update keda/install.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- keda/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keda/install.sh b/keda/install.sh index 58672559..aee7779a 100755 --- a/keda/install.sh +++ b/keda/install.sh @@ -5,4 +5,4 @@ helm repo update kubectl create namespace keda -helm install keda kedacore/keda --version 2.13.2 --namespace keda +helm install keda kedacore/keda --version 2.14.2 --namespace keda From 433f71baae7ae2432a3fd37215948b8eae14c581 Mon Sep 17 00:00:00 2001 From: updatecli Date: Thu, 9 May 2024 06:12:55 +0000 Subject: [PATCH 07/22] chore: Update cert-manager/manifest.yaml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- cert-manager/manifest.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cert-manager/manifest.yaml b/cert-manager/manifest.yaml index 48956ac7..5b5092f7 100644 --- a/cert-manager/manifest.yaml +++ b/cert-manager/manifest.yaml @@ -1,6 +1,6 @@ name: cert-manager title: "Cert Manager" -version: v1.14.4 +version: v1.14.5 maintainer: alex@openfaas.com description: cert-manager is a native Kubernetes certificate management controller url: https://cert-manager.io/docs/release-notes/release-notes-1.0/ From 390ef8d2b0217ce54ad1c469b14044a0bc8b488e Mon Sep 17 00:00:00 2001 From: updatecli Date: Thu, 9 May 2024 06:12:56 +0000 Subject: [PATCH 08/22] chore: Update cert-manager/install.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- cert-manager/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cert-manager/install.sh b/cert-manager/install.sh index fe1634e0..078dfcfc 100755 --- a/cert-manager/install.sh +++ b/cert-manager/install.sh @@ -1,3 +1,3 @@ #!/bin/bash -kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.14.4/cert-manager.yaml +kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.14.5/cert-manager.yaml From 27f73a7cb69018b4c91d339e852bcae23e5bcf11 Mon Sep 17 00:00:00 2001 From: updatecli Date: Thu, 9 May 2024 06:13:04 +0000 Subject: [PATCH 09/22] chore: Update Kubewarden CRDS Chart MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- kubewarden/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubewarden/install.sh b/kubewarden/install.sh index 01c2167d..bfd2a017 100644 --- a/kubewarden/install.sh +++ b/kubewarden/install.sh @@ -1,6 +1,6 @@ #!/bin/sh -KUBEWARDEN_CRDS_CHART_VERSION="1.4.6" +KUBEWARDEN_CRDS_CHART_VERSION="1.5.0" KUBEWARDEN_DEFAULTS_CHART_VERSION="1.9.4" KUBEWARDEN_CONTROLLER_CHART_VERSION="2.0.10" From 2dd33b6c0620e07ca394af1959c3a3039e1c37fd Mon Sep 17 00:00:00 2001 From: updatecli Date: Thu, 9 May 2024 06:13:05 +0000 Subject: [PATCH 10/22] chore: Update Kubewarden Controller manifest version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- kubewarden/manifest.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubewarden/manifest.yaml b/kubewarden/manifest.yaml index 581ec6df..eb151968 100644 --- a/kubewarden/manifest.yaml +++ b/kubewarden/manifest.yaml @@ -5,6 +5,6 @@ description: "Kubewarden is a Kubernetes Dynamic Admission Controller that valid maintainer: cncf-kubewarden-maintainers@lists.cncf.io url: https://www.kubewarden.io/ category: security -version: v1.11.0 +version: v1.12.0 dependencies: - cert-manager From 25dc49466d63b2df63678cc03e732973788cfc22 Mon Sep 17 00:00:00 2001 From: updatecli Date: Thu, 9 May 2024 06:13:07 +0000 Subject: [PATCH 11/22] chore: Update Kubewarden Controller Chart MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- kubewarden/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubewarden/install.sh b/kubewarden/install.sh index bfd2a017..0b6d7247 100644 --- a/kubewarden/install.sh +++ b/kubewarden/install.sh @@ -2,7 +2,7 @@ KUBEWARDEN_CRDS_CHART_VERSION="1.5.0" KUBEWARDEN_DEFAULTS_CHART_VERSION="1.9.4" -KUBEWARDEN_CONTROLLER_CHART_VERSION="2.0.10" +KUBEWARDEN_CONTROLLER_CHART_VERSION="2.0.11" # Currently, the chart depends on cert-manager. From 791a052d6adc13cf69de2c959b033924be53ac72 Mon Sep 17 00:00:00 2001 From: updatecli Date: Thu, 9 May 2024 06:13:08 +0000 Subject: [PATCH 12/22] chore: Update Kubewarden Defaults Chart MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- kubewarden/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubewarden/install.sh b/kubewarden/install.sh index 0b6d7247..fc063d42 100644 --- a/kubewarden/install.sh +++ b/kubewarden/install.sh @@ -1,7 +1,7 @@ #!/bin/sh KUBEWARDEN_CRDS_CHART_VERSION="1.5.0" -KUBEWARDEN_DEFAULTS_CHART_VERSION="1.9.4" +KUBEWARDEN_DEFAULTS_CHART_VERSION="2.0.0" KUBEWARDEN_CONTROLLER_CHART_VERSION="2.0.11" From cdbfc51988379de3af347c9ef1cd0479b5184b67 Mon Sep 17 00:00:00 2001 From: updatecli Date: Thu, 9 May 2024 06:13:52 +0000 Subject: [PATCH 13/22] chore: Update nextcloud/app.yaml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- nextcloud/app.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nextcloud/app.yaml b/nextcloud/app.yaml index 4e1aa151..213dd758 100644 --- a/nextcloud/app.yaml +++ b/nextcloud/app.yaml @@ -45,7 +45,7 @@ spec: app: nextcloud spec: containers: - - image: nextcloud:28.0.4 + - image: nextcloud:29.0.0 name: nextcloud ports: - containerPort: 80 From 0b27fe91bbe445d8bcafee8564b55a42de9e5c19 Mon Sep 17 00:00:00 2001 From: updatecli Date: Thu, 9 May 2024 06:13:53 +0000 Subject: [PATCH 14/22] chore: Update nextcloud /manifest.yaml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- nextcloud/manifest.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nextcloud/manifest.yaml b/nextcloud/manifest.yaml index 2661ac8c..06287ff0 100644 --- a/nextcloud/manifest.yaml +++ b/nextcloud/manifest.yaml @@ -1,7 +1,7 @@ --- title: NextCloud name: nextcloud -version: 28.0.4 +version: 29.0.0 maintainer: keith@hubner.co.uk, amit2cha@gmail.com description: Nextcloud is a completely integrated self-managed content collaboration platform url: https://nextcloud.com/ From 33a035e0fe43c43b961055b22188aed8e6136e0a Mon Sep 17 00:00:00 2001 From: updatecli Date: Thu, 9 May 2024 06:15:02 +0000 Subject: [PATCH 15/22] chore: Update joomla /manifest.yaml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- joomla/manifest.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/joomla/manifest.yaml b/joomla/manifest.yaml index 626a83c9..a58a6075 100644 --- a/joomla/manifest.yaml +++ b/joomla/manifest.yaml @@ -1,7 +1,7 @@ --- name: joomla title: Joomla -version: 5.1 +version: 5.1.0 maintainer: keith@hubner.co.uk, amit2cha@gmail.com description: Popular open source content management system (CMS) url: https://www.joomla.org/ From 47dff0259174a373e94abff20ece26c338ca9a9a Mon Sep 17 00:00:00 2001 From: updatecli Date: Thu, 9 May 2024 06:15:04 +0000 Subject: [PATCH 16/22] chore: Update joomla/app.yaml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- joomla/app.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/joomla/app.yaml b/joomla/app.yaml index ccde2cd9..10aabdc1 100644 --- a/joomla/app.yaml +++ b/joomla/app.yaml @@ -60,7 +60,7 @@ spec: spec: containers: - name: joomla - image: joomla:5.1 + image: joomla:5.1.0 imagePullPolicy: IfNotPresent ports: - containerPort: 80 From 50df258e6b4f244e975063cc92a741dbfe34d561 Mon Sep 17 00:00:00 2001 From: updatecli Date: Thu, 9 May 2024 06:15:05 +0000 Subject: [PATCH 17/22] chore: Update keycloak/app.yaml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- keycloak/app.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keycloak/app.yaml b/keycloak/app.yaml index b80782f8..6d2c1904 100644 --- a/keycloak/app.yaml +++ b/keycloak/app.yaml @@ -31,7 +31,7 @@ spec: spec: containers: - name: keycloak - image: quay.io/keycloak/keycloak:24.0.2 + image: quay.io/keycloak/keycloak:24.0.4 args: ["start-dev"] env: - name: KEYCLOAK_ADMIN From 8cfecbfbfa6be6190f82ccbf17ecbeeb2722ea5e Mon Sep 17 00:00:00 2001 From: updatecli Date: Thu, 9 May 2024 06:15:06 +0000 Subject: [PATCH 18/22] chore: Update keycloak /manifest.yaml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- keycloak/manifest.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keycloak/manifest.yaml b/keycloak/manifest.yaml index 3749e0c0..f72c0d80 100644 --- a/keycloak/manifest.yaml +++ b/keycloak/manifest.yaml @@ -1,7 +1,7 @@ --- name: keycloak title: Keycloak -version: 24.0.2 +version: 24.0.4 maintainer: harsh.manvar111@gmail.com description: Open Source Identity and Access Management url: https://www.keycloak.org/ From 17ed41175d6222ffeb584c50de606d69ab628527 Mon Sep 17 00:00:00 2001 From: updatecli Date: Thu, 9 May 2024 06:15:57 +0000 Subject: [PATCH 19/22] chore: Update ghost /manifest.yaml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- ghost/manifest.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghost/manifest.yaml b/ghost/manifest.yaml index e4a4fcbf..f720beba 100644 --- a/ghost/manifest.yaml +++ b/ghost/manifest.yaml @@ -1,7 +1,7 @@ --- name: ghost title: Ghost -version: 5.82.1 +version: 5.82.2 maintainer: saka@lnxid.com description: Ghost is a free and open source blogging platform designed to simplify the process of online publishing for individual bloggers as well as online publications. url: https://ghost.org/ From 6f50e7bc1c03a6cfea7d53979961b33be4c42024 Mon Sep 17 00:00:00 2001 From: updatecli Date: Thu, 9 May 2024 06:15:58 +0000 Subject: [PATCH 20/22] chore: Update ghost/app.yaml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- ghost/app.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghost/app.yaml b/ghost/app.yaml index 87492b00..e0d35c7e 100644 --- a/ghost/app.yaml +++ b/ghost/app.yaml @@ -36,7 +36,7 @@ spec: spec: containers: - name: ghost-blog - image: ghost:5.82.1 + image: ghost:5.82.2 ports: - name: ghost-blog containerPort: 2368 From 6c7dddd651f048c01d822110a68efd8cc67de4b6 Mon Sep 17 00:00:00 2001 From: updatecli Date: Thu, 9 May 2024 06:16:20 +0000 Subject: [PATCH 21/22] chore: Update argocd/install.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- argocd/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/argocd/install.sh b/argocd/install.sh index 598d2d6b..1276d02b 100755 --- a/argocd/install.sh +++ b/argocd/install.sh @@ -5,4 +5,4 @@ helm repo update kubectl create namespace argocd -helm install argo-cd argo/argo-cd --version 6.7.11 --namespace argocd +helm install argo-cd argo/argo-cd --version 6.8.0 --namespace argocd From 418d85b86adfd114b9e5319bb49f0d483a2226ab Mon Sep 17 00:00:00 2001 From: updatecli Date: Thu, 9 May 2024 06:16:22 +0000 Subject: [PATCH 22/22] chore: Update argocd/manifest.yaml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- argocd/manifest.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/argocd/manifest.yaml b/argocd/manifest.yaml index f6e9a54d..2dd722bf 100644 --- a/argocd/manifest.yaml +++ b/argocd/manifest.yaml @@ -4,4 +4,4 @@ maintainer: engin.diri@pulumi.com description: Declarative continuous deployment for Kubernetes url: https://github.com/argoproj/argo-cd/ category: ci_cd -version: v2.10.6 +version: v2.11.0