File tree 2 files changed +2
-2
lines changed
src/main/java/com/dajudge/kindcontainer
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ by default. These are the images used by Kindcontainer if you don't override the
214
214
| ` ApiServerContainer ` | ` registry.k8s.io/kube-apiserver ` | ` v${major}.${minor}.${patch} ` |
215
215
| ` K3sContainer ` | ` rancher/k3s ` | ` v${major}.${minor}.${patch}-k3s1 ` |
216
216
| ` 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 ` |
218
218
| Fluent API ` helm ` | ` alpine/helm ` | ` 3.14.0 ` |
219
219
| Fluent API ` kubectl ` | ` bitnami/kubectl ` | ` 1.21.9-debian-10-r10 ` |
220
220
| Webhooks ` nginx ` | ` nginx ` | ` 1.23.3 ` |
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ public class ApiServerContainer<T extends ApiServerContainer<T>> extends Kuberne
44
44
private static final int INTERNAL_API_SERVER_PORT = 6443 ;
45
45
private final CertAuthority etcdCa = new CertAuthority (System ::currentTimeMillis , "CN=etcd CA" );
46
46
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" );
48
48
private final KeyStoreWrapper apiServerKeyPair = apiServerCa .newKeyPair ("O=system:masters,CN=kubernetes-admin" , asList (
49
49
new GeneralName (GeneralName .iPAddress , Utils .resolve (getHost ())),
50
50
new GeneralName (GeneralName .dNSName , "localhost" ),
You can’t perform that action at this time.
0 commit comments