forked from aliyun/ros-templates
-
Notifications
You must be signed in to change notification settings - Fork 1
/
managed-edge-kubernetes-cluster.yml
83 lines (83 loc) · 1.73 KB
/
managed-edge-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
ROSTemplateFormatVersion: '2015-09-01'
Description: CS ManagedEdgeKubernetesCluster resource example
Parameters:
VpcName:
Type: String
Default: mytest
VSwitchName:
Type: String
Default: mytest
ZoneId:
Type: String
Default: cn-hangzhou-e
ClusterName:
Type: String
Default: mytest
Password:
Type: String
NumOfNodes:
Type: Number
Default: 1
MinValue: 0
MaxValue: 300
WorkerInstanceTypes:
Type: Json
Default:
- ecs.c5.large
WorkerSystemDiskCategory:
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
Resources:
Vpc:
Type: ALIYUN::ECS::VPC
Properties:
VpcName:
Ref: VpcName
CidrBlock: 192.168.0.0/16
VSwitch:
Type: ALIYUN::ECS::VSwitch
Properties:
ZoneId:
Ref: ZoneId
VpcId:
Ref: Vpc
VSwitchName:
Ref: VSwitchName
CidrBlock: 192.168.10.0/24
Cluster:
Type: ALIYUN::CS::ManagedEdgeKubernetesCluster
Properties:
VpcId:
Ref: Vpc
VSwitchIds:
- Ref: VSwitch
NumOfNodes:
Ref: NumOfNodes
Name:
Ref: ClusterName
LoginPassword:
Ref: Password
WorkerInstanceTypes:
Ref: WorkerInstanceTypes
WorkerSystemDiskCategory:
Ref: WorkerSystemDiskCategory
ServiceCidr: 172.19.0.0/20
Outputs:
ClusterId:
Value:
Fn::GetAtt:
- Cluster
- ClusterId
TaskId:
Value:
Fn::GetAtt:
- Cluster
- TaskId