Skip to content

Commit 51ee8ae

Browse files
committed
update kind and kubeadm for 0.0.2
Signed-off-by: Lan Liang <[email protected]>
1 parent 1960be2 commit 51ee8ae

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

kind/kcl.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kind"
33
edition = "v0.9.0"
4-
version = "0.0.2-rc1"
5-
description = "`kind` is a KCL module."
4+
version = "0.0.2"
5+
description = "`kind` is the Kind configuration definition."
66

kind/v1alpha4/kind_x-k8s_io_v1alpha4_cluster.k

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
schema Cluster:
22
apiVersion: str = "kind.x-k8s.io/v1alpha4"
33
kind: str = "Cluster"
4-
networking: Networking={}
4+
networking?: Networking
55
nodes: [Node]
6+
featureGates?: {str:bool}
67

78
schema Networking:
89
apiServerAddress?: str
910
apiServerPort?: int
1011
serviceSubnet?: str
1112
podSubnet?: str
13+
ipFamily?: str
14+
kubeProxyMode?: str
1215

1316
schema ExtraPortMapping:
1417
containerPort?: int

kubeadm/kcl.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
22
name = "kubeadm"
33
edition = "*"
4-
version = "0.0.2-rc1"
4+
version = "0.0.2"
55
description = "`kubeadm` is the kubeadm configuration definition."

kubeadm/v1beta3/cluster_configuration.k

+3
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ schema Etcd:
2929

3030
schema LocalEtcd:
3131
dataDir: str = "/var/lib/etcd"
32+
imageRepository?: str
33+
imageTag?: str
3234

3335
schema ExternalEtcd:
3436
endpoints: [str]
@@ -55,3 +57,4 @@ schema Scheduler:
5557

5658
schema Dns:
5759
imageRepository?: str
60+
imageTag?: str

0 commit comments

Comments
 (0)