Skip to content
This repository was archived by the owner on Oct 10, 2020. It is now read-only.

Commit f3c4148

Browse files
committed
Merge pull request #25 from yuanying/fix-heat-parameters
Some parameter in heat template should be string
2 parents 376be8c + 3a2eb01 commit f3c4148

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

kubecluster.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ parameters:
3939
type: number
4040
description: how many kubernetes nodes to spawn initially
4141
default: 1
42-
42+
4343
max_nodes:
4444
type: number
4545
description: maximum number of kubernetes nodes to spawn
@@ -71,17 +71,17 @@ parameters:
7171
description: >
7272
if true use the vxlan backend, otherwise use the default
7373
udp backend
74-
default: false
74+
default: "false"
7575
constraints:
76-
- allowed_values: [true, false]
76+
- allowed_values: ["true", "false"]
7777

7878
kube_allow_priv:
7979
type: string
8080
description: >
8181
whether or not kubernetes should permit privileged containers.
82-
default: true
82+
default: "true"
8383
constraints:
84-
- allowed_values: [true, false]
84+
- allowed_values: ["true", "false"]
8585

8686
docker_volume_size:
8787
type: number
@@ -100,9 +100,9 @@ parameters:
100100
type: string
101101
description: >
102102
whether or not to try registering with RHN
103-
default: false
103+
default: "false"
104104
constraints:
105-
- allowed_values: [true, false]
105+
- allowed_values: ["true", "false"]
106106

107107
rhn_username:
108108
type: string

kubenode.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ parameters:
2929
type: string
3030
description: >
3131
whether or not kubernetes should permit privileged containers.
32-
default: false
32+
default: "false"
3333
constraints:
34-
- allowed_values: [true, false]
34+
- allowed_values: ["true", "false"]
3535

3636
docker_volume_size:
3737
type: number
@@ -61,9 +61,9 @@ parameters:
6161
type: string
6262
description: >
6363
whether or not to try registering with RHN
64-
default: false
64+
default: "false"
6565
constraints:
66-
- allowed_values: [true, false]
66+
- allowed_values: ["true", "false"]
6767
rhn_username:
6868
type: string
6969
description: >

0 commit comments

Comments
 (0)