Skip to content
This repository was archived by the owner on Jul 30, 2021. It is now read-only.

Commit 6829892

Browse files
committed
*: update etcd version to 3.1.8
1 parent 5e6f059 commit 6829892

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

hack/multi-node/etcd-cloud-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ coreos:
1313
- name: 40-etcd-cluster.conf
1414
content: |
1515
[Service]
16-
Environment="ETCD_IMAGE_TAG=v3.1.6"
16+
Environment="ETCD_IMAGE_TAG=v3.1.8"
1717
Environment="ETCD_NAME={{ETCD_NODE_NAME}}"
1818
Environment="ETCD_ADVERTISE_CLIENT_URLS=https://$private_ipv4:2379"
1919
Environment="ETCD_INITIAL_ADVERTISE_PEER_URLS=https://$private_ipv4:2380"

hack/quickstart/init-master.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function configure_etcd() {
2525
mkdir -p /etc/systemd/system/etcd-member.service.d
2626
cat << EOF > /etc/systemd/system/etcd-member.service.d/10-etcd-member.conf
2727
[Service]
28-
Environment="ETCD_IMAGE_TAG=v3.1.6"
28+
Environment="ETCD_IMAGE_TAG=v3.1.8"
2929
Environment="ETCD_NAME=controller"
3030
Environment="ETCD_INITIAL_CLUSTER=controller=https://${COREOS_PRIVATE_IPV4}:2380"
3131
Environment="ETCD_INITIAL_ADVERTISE_PEER_URLS=https://${COREOS_PRIVATE_IPV4}:2380"

hack/single-node/user-data-etcd.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
- name: 10-version.conf
55
content: |
66
[Service]
7-
Environment="ETCD_IMAGE_TAG=v3.1.6"
7+
Environment="ETCD_IMAGE_TAG=v3.1.8"
88
Environment="ETCD_NAME=default"
99
Environment="ETCD_INITIAL_CLUSTER=default=https://127.0.0.1:2380"
1010
Environment="ETCD_INITIAL_ADVERTISE_PEER_URLS=https://127.0.0.1:2380"

pkg/asset/images.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package asset
33
// DefaultImages are the defualt images bootkube components use.
44
var DefaultImages = ImageVersions{
55
Busybox: "busybox",
6-
Etcd: "quay.io/coreos/etcd:v3.1.6",
6+
Etcd: "quay.io/coreos/etcd:v3.1.8",
77
EtcdOperator: "quay.io/coreos/etcd-operator:v0.3.0",
88
Flannel: "quay.io/coreos/flannel:v0.7.1-amd64",
99
Hyperkube: "quay.io/coreos/hyperkube:v1.6.4_coreos.0",

pkg/asset/internal/templates.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -992,7 +992,7 @@ var EtcdTPRTemplate = []byte(`{
992992
},
993993
"spec": {
994994
"size": 1,
995-
"version": "v3.1.6",
995+
"version": "v3.1.8",
996996
"pod": {
997997
"nodeSelector": {
998998
"node-role.kubernetes.io/master": ""

0 commit comments

Comments
 (0)