Compare commits

..

1 Commits

Author SHA1 Message Date
0a7c68c9a0 chore(deps): update helm release nats to v1.3.8 2025-06-28 03:02:23 +00:00
6 changed files with 15 additions and 30 deletions

View File

@ -10,11 +10,6 @@ def migrate(values):
# 1.32 # 1.32
values["network"]["enabled"] = True values["network"]["enabled"] = True
try:
values["addons"]["enabled"] = True
except KeyError:
values["addons"] = {}
values["addons"]["enabled"] = True values["addons"]["enabled"] = True
try: try:

View File

@ -27,6 +27,9 @@ control_plane_phase1() {
# upgrade modules # upgrade modules
admin_job "apply_kubezero, apply_network" admin_job "apply_kubezero, apply_network"
echo "Checking that all pods in kube-system are running ..."
waitSystemPodsRunning
} }
control_plane_phase2() { control_plane_phase2() {
@ -52,32 +55,20 @@ backup() {
done done
} }
control_plane_healthy() {
echo "Checking control-plane is healthy..."
kubectl rollout status ds cilium -n kube-system
waitSystemPodsRunning
}
##### #####
echo "Checking that all pods in kube-system are running ..."
control_plane_healthy waitSystemPodsRunning
[ "$ARGOCD" == "true" ] && disable_argo [ "$ARGOCD" == "true" ] && disable_argo
control_plane_phase1 control_plane_phase1
control_plane_healthy
echo "Replace controller nodes first to not stall out V1.31 controllers ... <return> to continue"
read -r
cluster_modules cluster_modules
backup backup
echo "Once ALL nodes, incl. workers, ALL, are running on $KUBE_VERSION <return> to continue" echo "Once ALL nodes, incl. workers, ALL, are running on $KUBE_VERSION, <return> to continue"
read -r read -r
control_plane_phase2 control_plane_phase2

View File

@ -1,6 +1,6 @@
# kubezero-auth # kubezero-auth
![Version: 0.6.4](https://img.shields.io/badge/Version-0.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 26.0.5](https://img.shields.io/badge/AppVersion-26.0.5-informational?style=flat-square) ![Version: 0.6.3](https://img.shields.io/badge/Version-0.6.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 26.0.5](https://img.shields.io/badge/AppVersion-26.0.5-informational?style=flat-square)
KubeZero umbrella chart for all things Authentication and Identity management KubeZero umbrella chart for all things Authentication and Identity management
@ -19,7 +19,7 @@ Kubernetes: `>= 1.30.0-0`
| Repository | Name | Version | | Repository | Name | Version |
|------------|------|---------| |------------|------|---------|
| https://cdn.zero-downtime.net/charts/ | kubezero-lib | 0.2.1 | | https://cdn.zero-downtime.net/charts/ | kubezero-lib | 0.2.1 |
| oci://registry-1.docker.io/bitnamicharts | keycloak | 24.7.4 | | oci://registry-1.docker.io/bitnamicharts | keycloak | 24.7.1 |
# Keycloak # Keycloak
@ -64,4 +64,4 @@ https://github.com/keycloak/keycloak-benchmark/tree/main/provision/minikube/keyc
| keycloak.replicaCount | int | `1` | | | keycloak.replicaCount | int | `1` | |
| keycloak.resources.limits.memory | string | `"1024Mi"` | | | keycloak.resources.limits.memory | string | `"1024Mi"` | |
| keycloak.resources.requests.cpu | string | `"100m"` | | | keycloak.resources.requests.cpu | string | `"100m"` | |
| keycloak.resources.requests.memory | string | `"640Mi"` | | | keycloak.resources.requests.memory | string | `"512Mi"` | |

View File

@ -2,7 +2,7 @@ apiVersion: v2
name: kubezero-mq name: kubezero-mq
description: KubeZero umbrella chart for MQ systems like NATS, RabbitMQ description: KubeZero umbrella chart for MQ systems like NATS, RabbitMQ
type: application type: application
version: 0.3.12 version: 0.3.13
home: https://kubezero.com home: https://kubezero.com
icon: https://cdn.zero-downtime.net/assets/kubezero/logo-small-64.png icon: https://cdn.zero-downtime.net/assets/kubezero/logo-small-64.png
keywords: keywords:
@ -17,7 +17,7 @@ dependencies:
version: 0.2.1 version: 0.2.1
repository: https://cdn.zero-downtime.net/charts/ repository: https://cdn.zero-downtime.net/charts/
- name: nats - name: nats
version: 1.3.7 version: 1.3.8
repository: https://nats-io.github.io/k8s/helm/charts/ repository: https://nats-io.github.io/k8s/helm/charts/
condition: nats.enabled condition: nats.enabled
- name: rabbitmq - name: rabbitmq

View File

@ -45,7 +45,7 @@ argo-cd:
- name: cmp-kubezero-git-sync - name: cmp-kubezero-git-sync
image: '{{ "{{" }} default .Values.global.image.repository .Values.repoServer.image.repository {{ "}}" }}:{{ "{{" }} default (include "argo-cd.defaultTag" .) .Values.repoServer.image.tag {{ "}}" }}' image: '{{ "{{" }} default .Values.global.image.repository .Values.repoServer.image.repository {{ "}}" }}:{{ "{{" }} default (include "argo-cd.defaultTag" .) .Values.repoServer.image.tag {{ "}}" }}'
imagePullPolicy: '{{ "{{" }} default .Values.global.image.imagePullPolicy .Values.repoServer.image.imagePullPolicy {{ "}}" }}' imagePullPolicy: '{{ "{{" }} default .Values.global.image.imagePullPolicy .Values.repoServer.image.imagePullPolicy {{ "}}" }}'
command: ["/usr/local/bin/argocd-cmp-server"] command: ["/var/run/argocd/argocd-cmp-server"]
env: env:
{{- include "aws-iam-env" (merge (dict "roleName" "argocd-repo-server") .) | nindent 10 }} {{- include "aws-iam-env" (merge (dict "roleName" "argocd-repo-server") .) | nindent 10 }}
volumeMounts: volumeMounts:

View File

@ -6,13 +6,12 @@
- ArgoCD upgraded to V3 incl. various performance optimizations, eg. ServerSideApply etc. - ArgoCD upgraded to V3 incl. various performance optimizations, eg. ServerSideApply etc.
## Features and fixes ## Features and fixes
- considerable performance improvements under load for the control-plane nodes - enabled PSI metrics to get better insight on root cause of performance issues
- enabled PSI cgroups metrics to get better insight on root cause of performance issues
## Version upgrades ## Version upgrades
- cilium 1.17.4 - cilium 1.17.4
- istio 1.26.1 - istio 1.26.1
- ArgoCD 3.0.9 - ArgoCD 3.0.5
- Prometheus 3.4.1 / Grafana 12.0.1 - Prometheus 3.4.1 / Grafana 12.0.1
- Nvidia container toolkit 1.17.8, drivers 570.148.08, Cuda 12.8 - Nvidia container toolkit 1.17.8, drivers 570.148.08, Cuda 12.8
- AWS Neuron 2.21.37 - AWS Neuron 2.21.37