Compare commits
1 Commits
main
...
renovate/k
Author | SHA1 | Date | |
---|---|---|---|
0a7c68c9a0 |
@ -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:
|
||||||
|
@ -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
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# kubezero-auth
|
# kubezero-auth
|
||||||
|
|
||||||
  
|
  
|
||||||
|
|
||||||
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"` | |
|
||||||
|
@ -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
|
||||||
|
@ -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:
|
||||||
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user