File tree 4 files changed +10
-4
lines changed
4 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 1
1
[package]
2
2
name = " kind"
3
3
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 ."
6
6
Original file line number Diff line number Diff line change 1
1
schema Cluster:
2
2
apiVersion: str = "kind.x-k8s.io/v1alpha4"
3
3
kind: str = "Cluster"
4
- networking: Networking={}
4
+ networking? : Networking
5
5
nodes: [Node]
6
+ featureGates?: {str:bool}
6
7
7
8
schema Networking:
8
9
apiServerAddress?: str
9
10
apiServerPort?: int
10
11
serviceSubnet?: str
11
12
podSubnet?: str
13
+ ipFamily?: str
14
+ kubeProxyMode?: str
12
15
13
16
schema ExtraPortMapping:
14
17
containerPort?: int
Original file line number Diff line number Diff line change 1
1
[package]
2
2
name = " kubeadm"
3
3
edition = " *"
4
- version = " 0.0.2-rc1 "
4
+ version = " 0.0.2"
5
5
description = " `kubeadm` is the kubeadm configuration definition."
Original file line number Diff line number Diff line change @@ -29,6 +29,8 @@ schema Etcd:
29
29
30
30
schema LocalEtcd:
31
31
dataDir: str = "/var/lib/etcd"
32
+ imageRepository?: str
33
+ imageTag?: str
32
34
33
35
schema ExternalEtcd:
34
36
endpoints: [str]
@@ -55,3 +57,4 @@ schema Scheduler:
55
57
56
58
schema Dns:
57
59
imageRepository?: str
60
+ imageTag?: str
You can’t perform that action at this time.
0 commit comments