Skip to content

Commit

Permalink
build: Bump etcd version to 3.5.3-0
Browse files Browse the repository at this point in the history
NOTE: This new version contains the fix
for etcd-io/etcd#13766 so we no longer need
the `--experimental-initial-corrupt-check=true` flag
  • Loading branch information
TeddyAndrieux committed Jul 27, 2022
1 parent e4b8247 commit 783f8a3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
[1.24.3](https://github.com/kubernetes/kubernetes/releases/tag/v1.24.3)
(PR[#3832](https://github.com/scality/metalk8s/pull/3832))

- Bump etcd version to [3.5.3](https://github.com/etcd-io/etcd/releases/tag/v3.5.3)
(PR[#3832](https://github.com/scality/metalk8s/pull/3832))

## Release 123.0.2 (in development)

## Release 123.0.1
Expand Down
4 changes: 2 additions & 2 deletions buildchain/buildchain/versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def load_version_information() -> None:
"c7d13ea4d57355aaad6b6ebcdcca50f5be65fc821f54161430f5c25641d68c5c"
)

ETCD_VERSION: str = "3.5.1"
ETCD_VERSION: str = "3.5.3"
ETCD_IMAGE_VERSION: str = f"{ETCD_VERSION}-0"
NGINX_IMAGE_VERSION: str = "1.21.6-alpine"
NODEJS_IMAGE_VERSION: str = "14.16.0"
Expand Down Expand Up @@ -124,7 +124,7 @@ def _version_prefix(version: str, prefix: str = "v") -> str:
Image(
name="etcd",
version=ETCD_IMAGE_VERSION,
digest="sha256:64b9ea357325d5db9f8a723dcf503b5a449177b17ac87d69481e126bb724c263",
digest="sha256:13f53ed1d91e2e11aac476ee9a0269fdda6cc4874eba903efd40daf50c55eee5",
),
Image(
name="grafana",
Expand Down
3 changes: 0 additions & 3 deletions salt/metalk8s/kubernetes/etcd/installed.sls
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@ Create local etcd Pod manifest:
- --trusted-ca-file=/etc/kubernetes/pki/etcd/ca.crt
# }
- --initial-cluster-state={{ state }}
# See https://github.com/etcd-io/etcd/issues/13766
# https://groups.google.com/a/kubernetes.io/g/dev/c/B7gJs88XtQc/m/rSgNOzV2BwAJ?utm_medium=email&utm_source=footer
- --experimental-initial-corrupt-check=true
volumes:
- path: /var/lib/etcd
name: etcd-data
Expand Down

0 comments on commit 783f8a3

Please sign in to comment.