From b99f00ad09607d3b2865e38f6ba82dd5a6208956 Mon Sep 17 00:00:00 2001 From: "squarefactory-bot[bot]" <108034466+squarefactory-bot[bot]@users.noreply.github.com> Date: Fri, 26 Aug 2022 14:27:17 +0200 Subject: [PATCH] chore: update dependencies (#103) Signed-off-by: GitHub Signed-off-by: GitHub Co-authored-by: Darkness4 --- .ci/version-lock | 14 +++++++------- .../monitoring/apps/prometheus-crd-app.yml | 2 +- cfctl.yaml.example | 4 ++-- core.example/argo-cd/install.sh | 2 +- core.example/sealed-secrets/install.sh | 2 +- helm-subcharts/kube-prometheus-stack/Chart.yaml | 2 +- scripts/setup-env | 4 ++-- web/docs/getting-started/03-k0s-configuration.md | 2 +- .../getting-started/05-argo-apps-deployment.md | 6 +++--- 9 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.ci/version-lock b/.ci/version-lock index 374b70505..2684bb870 100644 --- a/.ci/version-lock +++ b/.ci/version-lock @@ -1,22 +1,22 @@ # Core Version -argocd_version=4.10.7 -sealed_secrets_version=2.6.0 +argocd_version=5.3.4 +sealed_secrets_version=2.6.1 kubevirt_version=v0.56.0-rc.1 coredns_version=1.9.3 # Utils Version cfctl_version=v0.13.2+9001 -kubeseal_version=0.18.1 -helm_version=v3.9.3 +kubeseal_version=0.18.2 +helm_version=v3.9.4 etcdctl_version=v3.5.4 # Apps local_path_provisioner_version=v0.0.22 -kube_prometheus_stack_version=39.8.0 +kube_prometheus_stack_version=39.9.0 # cfctl.yaml -k0s_version=1.24.3+k0s.0 -metallb_version=4.0.2 +k0s_version=1.24.4+k0s.0 +metallb_version=4.1.1 traefik_version=10.24.0 cert_manager_version=v1.9.1 csi_driver_nfs_version=v4.1.0 diff --git a/argo.example/monitoring/apps/prometheus-crd-app.yml b/argo.example/monitoring/apps/prometheus-crd-app.yml index 886dd16a0..50dfd7ed5 100644 --- a/argo.example/monitoring/apps/prometheus-crd-app.yml +++ b/argo.example/monitoring/apps/prometheus-crd-app.yml @@ -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-39.8.0 + targetRevision: kube-prometheus-stack-39.9.0 directory: recurse: true diff --git a/cfctl.yaml.example b/cfctl.yaml.example index 73a338f3f..25d7cf809 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.24.3+k0s.0' + version: '1.24.4+k0s.0' dynamicConfig: false config: apiVersion: k0s.k0sproject.io/v1beta1 @@ -85,7 +85,7 @@ spec: charts: - name: metallb chartname: bitnami/metallb - version: '4.0.2' + version: '4.1.1' namespace: metallb - name: traefik diff --git a/core.example/argo-cd/install.sh b/core.example/argo-cd/install.sh index 138a8455c..eb1c8f70c 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 4.10.7 \ + --version 5.3.4 \ argocd \ argo/argo-cd \ --create-namespace diff --git a/core.example/sealed-secrets/install.sh b/core.example/sealed-secrets/install.sh index e03f86280..aa46bacfb 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.6.0 \ + --version 2.6.1 \ 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 712b53436..a1d151cd3 100644 --- a/helm-subcharts/kube-prometheus-stack/Chart.yaml +++ b/helm-subcharts/kube-prometheus-stack/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: kube-prometheus-stack-subchart description: Kube Prometheus Stack subchart type: application -version: 39.8.0 +version: 39.9.0 appVersion: '36.2.1' dependencies: diff --git a/scripts/setup-env b/scripts/setup-env index 9e40504b7..e1d81b619 100755 --- a/scripts/setup-env +++ b/scripts/setup-env @@ -68,7 +68,7 @@ export KUBECTL KUBESEAL="$(command -v kubeseal)" if ! [ -x "$KUBESEAL" ]; then - KUBESEAL_VERSION=0.18.1 + KUBESEAL_VERSION=0.18.2 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 @@ -82,7 +82,7 @@ export KUBESEAL HELM="$(command -v helm)" if ! [ -x "$HELM" ]; then - HELM_VERSION=v3.9.3 + HELM_VERSION=v3.9.4 echo "helm could not be found. Downloading it locally in ./bin." rm -f ./bin/helm curl -fsSL "https://get.helm.sh/helm-${HELM_VERSION}-${os}-${architecture}.tar.gz" | tar -zxvf - "${os}-${architecture}/helm" diff --git a/web/docs/getting-started/03-k0s-configuration.md b/web/docs/getting-started/03-k0s-configuration.md index 17e7b1df5..f5ecbaa31 100644 --- a/web/docs/getting-started/03-k0s-configuration.md +++ b/web/docs/getting-started/03-k0s-configuration.md @@ -44,7 +44,7 @@ After you set the `hosts` field, you must configure the k0s architecture by edit ```yaml title="cfctl.yaml > spec > k0s" k0s: - version: '1.24.3+k0s.0' + version: '1.24.4+k0s.0' dynamicConfig: false config: apiVersion: k0s.k0sproject.io/v1beta1 diff --git a/web/docs/getting-started/05-argo-apps-deployment.md b/web/docs/getting-started/05-argo-apps-deployment.md index 10ec6c367..ae0b0a884 100644 --- a/web/docs/getting-started/05-argo-apps-deployment.md +++ b/web/docs/getting-started/05-argo-apps-deployment.md @@ -257,7 +257,7 @@ spec: chart: kube-prometheus-stack repoURL: https://github.com/prometheus-community/helm-charts.git path: charts/kube-prometheus-stack/crds/ - targetRevision: kube-prometheus-stack-39.8.0 + targetRevision: kube-prometheus-stack-39.9.0 directory: recurse: true @@ -292,12 +292,12 @@ apiVersion: v2 name: kube-prometheus-stack-subchart description: Kube Prometheus Stack subchart type: application -version: 39.8.0 +version: 39.9.0 appVersion: '0.1.2' dependencies: - name: kube-prometheus-stack - version: 39.8.0 + version: 39.9.0 repository: https://prometheus-community.github.io/helm-charts ```