diff --git a/.ci/version-lock b/.ci/version-lock index bb839e1ac..9bcf6877d 100644 --- a/.ci/version-lock +++ b/.ci/version-lock @@ -1,7 +1,7 @@ # Core Version -argocd_version=4.10.3 -sealed_secrets_version=2.5.2 -kubevirt_version=v0.55.0-rc.0 +argocd_version=4.10.5 +sealed_secrets_version=2.6.0 +kubevirt_version=v0.56.0-rc.0 coredns_version=1.9.3 # Utils Version @@ -12,11 +12,11 @@ etcdctl_version=v3.5.4 # Apps local_path_provisioner_version=v0.0.22 -kube_prometheus_stack_version=39.2.0 +kube_prometheus_stack_version=39.5.0 # cfctl.yaml -k0s_version=1.24.2+k0s.0 -metallb_version=3.0.12 +k0s_version=1.24.3+k0s.0 +metallb_version=4.0.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 6c70a24d9..6887d0e76 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.2.0 + targetRevision: kube-prometheus-stack-39.5.0 directory: recurse: true diff --git a/cfctl.yaml.example b/cfctl.yaml.example index e056f9175..90b4e6e67 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.2+k0s.0' + version: '1.24.3+k0s.0' dynamicConfig: false config: apiVersion: k0s.k0sproject.io/v1beta1 @@ -85,7 +85,7 @@ spec: charts: - name: metallb chartname: bitnami/metallb - version: '3.0.12' + version: '4.0.1' namespace: metallb values: | configInline: diff --git a/core.example/argo-cd/install.sh b/core.example/argo-cd/install.sh index cc9708b24..cc00e87f1 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.3 \ + --version 4.10.5 \ argocd \ argo/argo-cd \ --create-namespace diff --git a/core.example/kubevirt/base/kustomization.yaml b/core.example/kubevirt/base/kustomization.yaml index 9683073ec..58a907251 100644 --- a/core.example/kubevirt/base/kustomization.yaml +++ b/core.example/kubevirt/base/kustomization.yaml @@ -1,3 +1,3 @@ resources: - - https://github.com/kubevirt/kubevirt/releases/download/v0.55.0-rc.0/kubevirt-operator.yaml - - https://github.com/kubevirt/kubevirt/releases/download/v0.55.0-rc.0/kubevirt-cr.yaml + - https://github.com/kubevirt/kubevirt/releases/download/v0.56.0-rc.0/kubevirt-operator.yaml + - https://github.com/kubevirt/kubevirt/releases/download/v0.56.0-rc.0/kubevirt-cr.yaml diff --git a/core.example/sealed-secrets/install.sh b/core.example/sealed-secrets/install.sh index 579b92eae..e03f86280 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.5.2 \ + --version 2.6.0 \ 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 8eed39b3a..85cf3419c 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.2.0 +version: 39.5.0 appVersion: '36.2.1' dependencies: diff --git a/web/docs/getting-started/03-k0s-configuration.md b/web/docs/getting-started/03-k0s-configuration.md index 3c86e288e..2d80098a7 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.2+k0s.0' + version: '1.24.3+k0s.0' dynamicConfig: false config: apiVersion: k0s.k0sproject.io/v1beta1 @@ -123,7 +123,7 @@ Your router must be capable of using BGP. If not, you should use an appliance wi ```yaml title="cfctl.yaml > spec > k0s > spec > extensions > helm > charts[]" - name: metallb chartname: bitnami/metallb - version: '3.0.12' + version: '4.0.1' namespace: metallb values: | @@ -156,7 +156,7 @@ Your router must be capable of using BGP. If not, you should use an appliance wi ```yaml title="cfctl.yaml > spec > k0s > spec > extensions > helm > charts[]" - name: metallb chartname: bitnami/metallb - version: '3.0.12' + version: '4.0.1' namespace: metallb values: | diff --git a/web/docs/getting-started/05-argo-apps-deployment.md b/web/docs/getting-started/05-argo-apps-deployment.md index 582a5ee88..8283fe4c9 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.2.0 + targetRevision: kube-prometheus-stack-39.5.0 directory: recurse: true @@ -292,12 +292,12 @@ apiVersion: v2 name: kube-prometheus-stack-subchart description: Kube Prometheus Stack subchart type: application -version: 39.2.0 +version: 39.5.0 appVersion: '0.1.2' dependencies: - name: kube-prometheus-stack - version: 39.2.0 + version: 39.5.0 repository: https://prometheus-community.github.io/helm-charts ```