forked from aliyun/ros-templates
-
Notifications
You must be signed in to change notification settings - Fork 1
/
kubernetes-cluster.yml
102 lines (102 loc) · 2.19 KB
/
kubernetes-cluster.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
ROSTemplateFormatVersion: '2015-09-01'
Description: CS KubernetesCluster resource example
Parameters:
Name:
Type: String
Default: mytest
MasterInstanceTypes:
Type: Json
Default:
- ecs.c5.large
- ecs.c5.large
- ecs.c5.large
WorkerInstanceTypes:
Type: Json
Default:
- ecs.c5.large
SystemDiskCategory:
Type: String
Description: Category of system disk. Default is cloud_efficiency. support cloud|cloud_efficiency|cloud_ssd|cloud_essd|ephemeral_ssd.Old
instances will not be changed.
Default: cloud_essd
AllowedValues:
- cloud
- cloud_efficiency
- cloud_ssd
- cloud_essd
- ephemeral_ssd
LoginPassword:
Type: String
ZoneId:
Type: String
Label:
en: Zone ID
zh-cn: 可用区ID
AssociationProperty: ALIYUN::ECS::Instance::ZoneId
Resources:
Vpc:
Type: ALIYUN::ECS::VPC
Properties:
VpcName: mytest
CidrBlock: 192.168.0.0/16
VSwitch1:
Type: ALIYUN::ECS::VSwitch
Properties:
ZoneId:
Ref: ZoneId
VpcId:
Ref: Vpc
VSwitchName: mytest
CidrBlock: 192.168.1.0/24
VSwitch2:
Type: ALIYUN::ECS::VSwitch
Properties:
ZoneId:
Ref: ZoneId
VpcId:
Ref: Vpc
VSwitchName: mytest
CidrBlock: 192.168.2.0/24
VSwitch3:
Type: ALIYUN::ECS::VSwitch
Properties:
ZoneId:
Ref: ZoneId
VpcId:
Ref: Vpc
VSwitchName: mytest
CidrBlock: 192.168.0.0/24
KubernetesCluster:
Type: ALIYUN::CS::KubernetesCluster
Properties:
VpcId:
Ref: Vpc
MasterVSwitchIds:
- Ref: VSwitch1
- Ref: VSwitch2
- Ref: VSwitch3
WorkerVSwitchIds:
- Ref: VSwitch1
MasterInstanceTypes:
Ref: MasterInstanceTypes
MasterSystemDiskCategory:
Ref: SystemDiskCategory
WorkerSystemDiskCategory:
Ref: SystemDiskCategory
WorkerInstanceTypes:
Ref: WorkerInstanceTypes
Name:
Ref: Name
LoginPassword:
Ref: LoginPassword
Outputs:
ClusterId:
Value:
Fn::GetAtt:
- KubernetesCluster
- ClusterId
TaskId:
Value:
Fn::GetAtt:
- KubernetesCluster
- TaskId