Merge pull request #4864 from rohit-satya/etcd-update-3.5.13

etcd:Update version to 3.5.13
This commit is contained in:
karmada-bot 2024-04-25 20:56:21 +08:00 committed by GitHub
commit 40d65f951a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 7 additions and 7 deletions

View File

@ -33,7 +33,7 @@ spec:
- operator: Exists
containers:
- name: etcd
image: registry.k8s.io/etcd:3.5.9-0
image: registry.k8s.io/etcd:3.5.13-0
imagePullPolicy: IfNotPresent
livenessProbe:
exec:

View File

@ -233,7 +233,7 @@ helm install karmada-scheduler-estimator -n karmada-system ./charts/karmada
| `etcd.internal.replicaCount` | Target replicas of the etcd | `1` |
| `etcd.internal.image.repository` | Image of the etcd | `"registry.k8s.io/etcd"` |
| `etcd.internal.image.pullPolicy` | Image pull policy of the etcd | `"IfNotPresent"` |
| `etcd.internal.image.tag` | Image tag of the etcd | `"3.5.9-0"` |
| `etcd.internal.image.tag` | Image tag of the etcd | `"3.5.13-0"` |
| `etcd.internal.storageType` | StorageType of the etcd, accepts "hostPath", "pvc" | `"hostPath"` |
| `etcd.internal.pvc.storageClass` | StorageClass of the etcd, takes effect when`etcd.internal.storageType` is "pvc" | `""` |
| `etcd.internal.pvc.size` | Storage size of the etcd, takes effect when`etcd.internal.storageType` is "pvc" | `""` |

View File

@ -658,7 +658,7 @@ etcd:
image:
registry: registry.k8s.io
repository: etcd
tag: "3.5.9-0"
tag: "3.5.13-0"
## Specify a imagePullPolicy, defaults to 'IfNotPresent'
pullPolicy: IfNotPresent
## @param etcd.internal.storageType storage type for etcd data

View File

@ -8,7 +8,7 @@ spec:
etcd:
local:
imageRepository: registry.k8s.io/etcd
imageTag: 3.5.9-0
imageTag: 3.5.13-0
replicas: 1
volumeData:
# hostPath:

View File

@ -29,7 +29,7 @@ const (
// KarmadaDefaultRepository defines the default of the karmada image repository
KarmadaDefaultRepository = "docker.io/karmada"
// EtcdDefaultVersion defines the default of the karmada etcd image tag
EtcdDefaultVersion = "3.5.9-0"
EtcdDefaultVersion = "3.5.13-0"
// KubeDefaultVersion defines the default of the karmada apiserver and kubeControllerManager image tag
KubeDefaultVersion = "v1.27.11"
// KarmadaDefaultServiceSubnet defines the default of the subnet used by k8s services.

View File

@ -67,7 +67,7 @@ var (
%[1]s init --etcd-storage-mode hostPath --etcd-node-selector-labels karmada.io/etcd=true
# Private registry can be specified for all images
%[1]s init --etcd-image local.registry.com/library/etcd:3.5.9-0
%[1]s init --etcd-image local.registry.com/library/etcd:3.5.13-0
# Specify Karmada API Server IP address. If not set, the address on the master node will be used.
%[1]s init --karmada-apiserver-advertise-address 192.168.1.2

View File

@ -83,7 +83,7 @@ var (
karmadaRelease string
defaultEtcdImage = "etcd:3.5.9-0"
defaultEtcdImage = "etcd:3.5.13-0"
// DefaultCrdURL Karmada crds resource
DefaultCrdURL string