From 21fef7773af7f3699229810989a4e5b9210d8bda Mon Sep 17 00:00:00 2001 From: "renovate[bot]" Date: Tue, 21 Nov 2023 04:55:09 +0000 Subject: [PATCH] chore: update dependencies Signed-off-by: GitHub --- .ci/version-lock | 12 ++++++------ .../apps/local-path-storage-app.yaml | 2 +- argo.example/monitoring/apps/prometheus-crd-app.yaml | 2 +- cfctl.yaml.example | 2 +- core.example/argo-cd/install.sh | 2 +- core.example/sealed-secrets/install.sh | 2 +- helm-subcharts/kube-prometheus-stack/Chart.yaml | 4 ++-- scripts/setup-env | 2 +- web/docs/getting-started/03-k0s-configuration.md | 2 +- web/docs/reference/cfctl.yaml.md | 2 +- 10 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.ci/version-lock b/.ci/version-lock index 7e984de99..8149eb6e7 100644 --- a/.ci/version-lock +++ b/.ci/version-lock @@ -1,21 +1,21 @@ # Core Version -argocd_version=5.51.1 -sealed_secrets_version=2.13.2 +argocd_version=5.51.4 +sealed_secrets_version=2.13.3 kubevirt_version=v1.1.0 coredns_version=1.11.1 # Utils Version cfctl_version=v0.16.0+9001 -kubeseal_version=0.24.3 +kubeseal_version=0.24.4 helm_version=v3.13.2 etcdctl_version=v3.5.10 # Apps -local_path_provisioner_version=v0.0.24 -kube_prometheus_stack_version=52.1.0 +local_path_provisioner_version=v0.0.25 +kube_prometheus_stack_version=54.1.0 # cfctl.yaml -k0s_version=1.28.3+k0s.0 +k0s_version=1.28.4+k0s.0 metallb_version=4.7.14 traefik_version=25.0.0 cert_manager_version=v1.13.2 diff --git a/argo.example/local-path-storage/apps/local-path-storage-app.yaml b/argo.example/local-path-storage/apps/local-path-storage-app.yaml index 85417ce47..394b92cf0 100644 --- a/argo.example/local-path-storage/apps/local-path-storage-app.yaml +++ b/argo.example/local-path-storage/apps/local-path-storage-app.yaml @@ -9,7 +9,7 @@ spec: project: local-path-storage source: repoURL: https://github.com/rancher/local-path-provisioner.git - targetRevision: v0.0.24 + targetRevision: v0.0.25 path: deploy kustomize: {} diff --git a/argo.example/monitoring/apps/prometheus-crd-app.yaml b/argo.example/monitoring/apps/prometheus-crd-app.yaml index 8fc4ea384..a6c5b938e 100644 --- a/argo.example/monitoring/apps/prometheus-crd-app.yaml +++ b/argo.example/monitoring/apps/prometheus-crd-app.yaml @@ -10,7 +10,7 @@ spec: source: repoURL: https://github.com/prometheus-community/helm-charts.git path: charts/kube-prometheus-stack/crds/ - targetRevision: kube-prometheus-stack-52.1.0 + targetRevision: kube-prometheus-stack-54.1.0 directory: recurse: true diff --git a/cfctl.yaml.example b/cfctl.yaml.example index 5cdda4ffb..39d2a7dac 100644 --- a/cfctl.yaml.example +++ b/cfctl.yaml.example @@ -25,7 +25,7 @@ spec: - sh -c 'if [ "$(getenforce)" != "Permissive" ] && [ "$(getenforce)" != "Disabled" ]; then setenforce 0; fi' k0s: - version: '1.28.3+k0s.0' + version: '1.28.4+k0s.0' dynamicConfig: false config: apiVersion: k0s.k0sproject.io/v1beta1 diff --git a/core.example/argo-cd/install.sh b/core.example/argo-cd/install.sh index fb96065bb..cea7cd1b6 100755 --- a/core.example/argo-cd/install.sh +++ b/core.example/argo-cd/install.sh @@ -8,7 +8,7 @@ helm repo update helm upgrade --install \ -n argocd \ -f "${BASEDIR}/values.yaml" \ - --version 5.51.1 \ + --version 5.51.4 \ argocd \ argo/argo-cd \ --create-namespace diff --git a/core.example/sealed-secrets/install.sh b/core.example/sealed-secrets/install.sh index a3599a528..e315808b3 100755 --- a/core.example/sealed-secrets/install.sh +++ b/core.example/sealed-secrets/install.sh @@ -5,7 +5,7 @@ helm repo update helm upgrade --install \ -n sealed-secrets \ - --version 2.13.2 \ + --version 2.13.3 \ sealed-secrets \ sealed-secrets/sealed-secrets \ --create-namespace diff --git a/helm-subcharts/kube-prometheus-stack/Chart.yaml b/helm-subcharts/kube-prometheus-stack/Chart.yaml index bcffc54e2..92d09783e 100644 --- a/helm-subcharts/kube-prometheus-stack/Chart.yaml +++ b/helm-subcharts/kube-prometheus-stack/Chart.yaml @@ -2,10 +2,10 @@ apiVersion: v2 name: kube-prometheus-stack-subchart description: Kube Prometheus Stack subchart type: application -version: 52.1.0 +version: 54.1.0 appVersion: '36.2.1' dependencies: - name: kube-prometheus-stack - version: 52.1.0 + version: 54.1.0 repository: https://prometheus-community.github.io/helm-charts diff --git a/scripts/setup-env b/scripts/setup-env index 67c998d6e..1ef292eb3 100755 --- a/scripts/setup-env +++ b/scripts/setup-env @@ -70,7 +70,7 @@ export KUBECTL KUBESEAL="$(command -v kubeseal)" if ! [ -x "$KUBESEAL" ]; then - KUBESEAL_VERSION=0.24.3 + KUBESEAL_VERSION=0.24.4 echo "kubeseal could not be found. Downloading it locally in ./bin." rm -f ./bin/kubeseal curl -fsSL "https://github.com/bitnami-labs/sealed-secrets/releases/download/v${KUBESEAL_VERSION}/kubeseal-${KUBESEAL_VERSION}-${os}-${architecture}.tar.gz" | tar -zxvf - kubeseal diff --git a/web/docs/getting-started/03-k0s-configuration.md b/web/docs/getting-started/03-k0s-configuration.md index ef03114da..8c5fc50ba 100644 --- a/web/docs/getting-started/03-k0s-configuration.md +++ b/web/docs/getting-started/03-k0s-configuration.md @@ -62,7 +62,7 @@ After you set the `hosts` field, you must configure the k0s architecture by edit ```yaml title="cfctl.yaml > spec > k0s" k0s: - version: '1.28.3+k0s.0' + version: '1.28.4+k0s.0' dynamicConfig: false config: apiVersion: k0s.k0sproject.io/v1beta1 diff --git a/web/docs/reference/cfctl.yaml.md b/web/docs/reference/cfctl.yaml.md index f79268b1e..b759c3a0c 100644 --- a/web/docs/reference/cfctl.yaml.md +++ b/web/docs/reference/cfctl.yaml.md @@ -33,7 +33,7 @@ spec: - sh -c 'if [ "$(getenforce)" != "Permissive" ] && [ "$(getenforce)" != "Disabled" ]; then setenforce 0; fi' k0s: - version: '1.28.3+k0s.0' + version: '1.28.4+k0s.0' dynamicConfig: false config: apiVersion: k0s.k0sproject.io/v1beta1