Skip to content

Commit

Permalink
Merge pull request #5854 from chaosi-zju/etcd-version
Browse files Browse the repository at this point in the history
etcd: update default version to 3.5.16-0
  • Loading branch information
karmada-bot authored Nov 22, 2024
2 parents 079d0ab + a11784e commit 2f1fe6e
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion artifacts/deploy/karmada-etcd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ spec:
- operator: Exists
containers:
- name: etcd
image: registry.k8s.io/etcd:3.5.13-0
image: registry.k8s.io/etcd:3.5.16-0
imagePullPolicy: IfNotPresent
livenessProbe:
exec:
Expand Down
2 changes: 1 addition & 1 deletion charts/karmada/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.13-0"` |
| `etcd.internal.image.tag` | Image tag of the etcd | `"3.5.16-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" | `""` |
Expand Down
2 changes: 1 addition & 1 deletion charts/karmada/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ etcd:
image:
registry: registry.k8s.io
repository: etcd
tag: "3.5.13-0"
tag: "3.5.16-0"
## Specify a imagePullPolicy, defaults to 'IfNotPresent'
pullPolicy: IfNotPresent
## @param etcd.internal.storageType storage type for etcd data
Expand Down
2 changes: 1 addition & 1 deletion operator/config/samples/karmada-sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ spec:
etcd:
local:
imageRepository: registry.k8s.io/etcd
imageTag: 3.5.13-0
imageTag: 3.5.16-0
replicas: 1
volumeData:
# hostPath:
Expand Down
2 changes: 1 addition & 1 deletion operator/config/samples/karmada.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ spec:
etcd:
local:
imageRepository: registry.k8s.io/etcd
imageTag: 3.5.13-0
imageTag: 3.5.16-0
replicas: 1
volumeData:
# hostPath:
Expand Down
2 changes: 1 addition & 1 deletion operator/pkg/constants/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.13-0"
EtcdDefaultVersion = "3.5.16-0"
// KubeDefaultVersion defines the default of the karmada apiserver and kubeControllerManager image tag
KubeDefaultVersion = "v1.31.3"
// KarmadaDefaultServiceSubnet defines the default of the subnet used by k8s services.
Expand Down
2 changes: 1 addition & 1 deletion pkg/karmadactl/cmdinit/cmdinit.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.13-0
%[1]s init --etcd-image local.registry.com/library/etcd:3.5.16-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
Expand Down
2 changes: 1 addition & 1 deletion pkg/karmadactl/cmdinit/kubernetes/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ var (

karmadaRelease string

defaultEtcdImage = "etcd:3.5.13-0"
defaultEtcdImage = "etcd:3.5.16-0"

// DefaultCrdURL Karmada crds resource
DefaultCrdURL string
Expand Down

0 comments on commit 2f1fe6e

Please sign in to comment.