Skip to content

Commit 26b9eb7

Browse files
authored
Use newer Etcd version (#273)
Signed-off-by: Jakub Scholz <[email protected]>
1 parent 535090d commit 26b9eb7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ by default. These are the images used by Kindcontainer if you don't override the
214214
| `ApiServerContainer` | `registry.k8s.io/kube-apiserver` | `v${major}.${minor}.${patch}` |
215215
| `K3sContainer` | `rancher/k3s` | `v${major}.${minor}.${patch}-k3s1` |
216216
| `KindContainer` | `kindest/node` | `v${major}.${minor}.${patch}` |
217-
| `etcd` | `registry.k8s.io/etcd` | `3.4.13-0` |
217+
| `etcd` | `registry.k8s.io/etcd` | `3.5.12-0` |
218218
| Fluent API `helm` | `alpine/helm` | `3.14.0` |
219219
| Fluent API `kubectl` | `bitnami/kubectl` | `1.21.9-debian-10-r10` |
220220
| Webhooks `nginx` | `nginx` | `1.23.3` |

src/main/java/com/dajudge/kindcontainer/ApiServerContainer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public class ApiServerContainer<T extends ApiServerContainer<T>> extends Kuberne
4444
private static final int INTERNAL_API_SERVER_PORT = 6443;
4545
private final CertAuthority etcdCa = new CertAuthority(System::currentTimeMillis, "CN=etcd CA");
4646
private final CertAuthority apiServerCa = new CertAuthority(System::currentTimeMillis, "CN=API Server CA");
47-
private DockerImageName etcdImage = DockerImageName.parse("registry.k8s.io/etcd:3.4.13-0");
47+
private DockerImageName etcdImage = DockerImageName.parse("registry.k8s.io/etcd:3.5.12-0");
4848
private final KeyStoreWrapper apiServerKeyPair = apiServerCa.newKeyPair("O=system:masters,CN=kubernetes-admin", asList(
4949
new GeneralName(GeneralName.iPAddress, Utils.resolve(getHost())),
5050
new GeneralName(GeneralName.dNSName, "localhost"),

0 commit comments

Comments
 (0)