-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathtemplate.yaml
1091 lines (1090 loc) · 32.3 KB
/
template.yaml
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
ROSTemplateFormatVersion: "2015-09-01"
Description:
zh-cn: 使用ROS模板部署Ack-Distro驱动的K8S多节点集群,含可选公网访问与自定义资源配置。
en: Use ROS templates to deploy Ack-Distro-driven K8S multi-node clusters, including optional public network access and custom resource configuration.
Parameters:
PayType:
Type: String
Label:
en: ECS Instance Charge Type
zh-cn: 付费类型
Default: PostPaid
AllowedValues:
- PostPaid
- PrePaid
AssociationProperty: ChargeType
AssociationPropertyMetadata:
LocaleKey: InstanceChargeType
PayPeriodUnit:
Type: String
Label:
en: Pay Period Unit
zh-cn: 购买资源时长周期
Default: Month
AllowedValues:
- Month
- Year
AssociationProperty: PayPeriodUnit
AssociationPropertyMetadata:
Visible:
Condition:
Fn::Not:
Fn::Equals:
- ${PayType}
- PostPaid
PayPeriod:
Type: Number
Label:
en: Period
zh-cn: 购买资源时长
Default: 1
AllowedValues:
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
AssociationProperty: PayPeriod
AssociationPropertyMetadata:
Visible:
Condition:
Fn::Not:
Fn::Equals:
- ${PayType}
- PostPaid
ZoneId:
Type: String
AssociationProperty: ALIYUN::ECS::Instance::ZoneId
Label:
en: VSwitch Availability Zone
zh-cn: 交换机可用区
VpcId:
AssociationProperty: ALIYUN::ECS::VPC::VPCId
Type: String
Description:
en: Please search the ID starting with (vpc-xxx) from console-Virtual Private Cloud
zh-cn: 现有虚拟专有网络的实例ID。
Label:
en: VPC ID
zh-cn: 专有网络VPC实例ID
AssociationPropertyMetadata:
Visible:
Condition:
Fn::Equals:
- ${AutoCreateVpcAndVsw}
- false
VSwitchId:
AssociationProperty: ALIYUN::ECS::VSwitch::VSwitchId
AssociationPropertyMetadata:
VpcId: ${VpcId}
ZoneId: ${ZoneId}
Visible:
Condition:
Fn::Equals:
- ${AutoCreateVpcAndVsw}
- false
Type: String
Description:
en: Instance ID of existing business network switches, console-Virtual Private Cloud-VSwitches under query
zh-cn: 现有业务网络交换机的实例ID。
Label:
en: VSwitch ID
zh-cn: 交换机实例ID
LoadBalancerSpec:
Type: String
AssociationProperty: ALIYUN::SLB::Instance::InstanceType
Label:
en: LoadBalancer Specifications
zh-cn: 负载均衡实例规格
Description:
en: By default, a private SLB instance will be created for the API Server, and users can modify the SLB instance specifications. Deleting this instance will result in the API Server being unable to access.
zh-cn: 默认将为 API Server 创建一个私网 SLB 实例,用户可修改SLB实例规格。若删除该实例会导致 API Server 无法访问。
AssociationPropertyMetadata:
ZoneId: ${ZoneId}
ClusterInternetMaxBandwidthOut:
Default: 100
Type: Number
Label:
zh-cn: 集群公网带宽
en: Master Node Internet Max Bandwidth Out
MinValue: 1
MaxValue: 100
Description:
zh-cn: 取值范围1-100
en: The value range is from 1 to 100.
AssociationPropertyMetadata:
Visible:
Condition:
Fn::Equals:
- ${NeedCreateSNAT}
- true
ClusterInternetChargeType:
Default: PayByTraffic
Type: String
Label:
zh-cn: NAT公网流量付费类型
en: Internet Charge Type of NAT.
AllowedValues:
- PayByBandwidth
- PayByTraffic
AssociationPropertyMetadata:
LocaleKey: InternetChargeType
Visible:
Condition:
Fn::Equals:
- ${NeedCreateSNAT}
- true
ApiServerInternetMaxBandwidthOut:
Default: 100
Type: Number
Label:
zh-cn: ApiServer公网带宽
en: Master Node Internet Max Bandwidth Out
MinValue: 1
MaxValue: 100
Description:
zh-cn: 取值范围1-100
en: The value range is from 1 to 100.
AssociationPropertyMetadata:
Visible:
Condition:
Fn::Equals:
- ${NeedCreateApiServerEip}
- true
ApiServerInternetChargeType:
Default: PayByTraffic
Type: String
Label:
zh-cn: ApiServer公网流量付费类型
en: Internet Charge Type of NAT.
AllowedValues:
- PayByBandwidth
- PayByTraffic
AssociationPropertyMetadata:
LocaleKey: InternetChargeType
Visible:
Condition:
Fn::Equals:
- ${NeedCreateApiServerEip}
- true
MasterEcsInstanceType:
Type: String
Label:
en: Instance Type
zh-cn: 实例类型
Description:
en: Master nodes must have a minimum of 2 cores and 4GB of RAM.
zh-cn: 实例类型,Master节点不可小于2核4G,否则可能会创建失败。
AssociationProperty: ALIYUN::ECS::Instance::InstanceType
AssociationPropertyMetadata:
ZoneId: ${ZoneId}
InstanceChargeType: ${InstanceChargeType}
MasterAmount:
Type: Number
Default: 1
Label:
en: Master amount.
zh-cn: Master节点数量
Description:
zh-cn: Master节点数量,最少为1。
en: Master amount, must at least 1.
MinValue: 1
MasterSystemDiskCategory:
Default: cloud_essd
Label:
zh-cn: 系统盘类型
en: System Disk Type
Type: String
Description:
zh-cn: 系统盘类型,须选择实例支持的磁盘类型。
en: System disk type, you must select the type of disk that the instance.
AllowedValues:
- cloud_efficiency
- cloud_ssd
- cloud_essd
AssociationPropertyMetadata:
LocaleKey: DiskCategory
MasterSystemDiskSize:
Default: 40
Type: Number
Description:
zh-cn: 系统盘大小, 取值范围:[40, 500], 单位:GB。
en: 'System disk size of each node, range of values: 40-500, units: GB.'
MinValue: 40
MaxValue: 500
Label:
zh-cn: 系统盘空间
en: System Disk Space
MasterDataDiskCategory:
Default: cloud_essd
Label:
zh-cn: 数据盘类型
en: Data Disk Type
Type: String
Description:
zh-cn: 数据盘类型,须选择实例支持的磁盘类型。
en: Data disk type, you must select the type of disk that the instance.
AllowedValues:
- cloud_efficiency
- cloud_ssd
- cloud_essd
AssociationPropertyMetadata:
LocaleKey: DiskCategory
Visible:
Condition:
Fn::Equals:
- ${NeedCreateMasterDataDisk}
- true
MasterDataDiskSize:
Default: 40
Type: Number
Description:
zh-cn: 数据盘大小, 取值范围:[40, 500], 单位:GB。
en: 'System disk size of each node, range of values: 40-500, units: GB.'
MinValue: 40
MaxValue: 500
Label:
zh-cn: 数据盘空间
en: Data Disk Space
AssociationPropertyMetadata:
Visible:
Condition:
Fn::Equals:
- ${NeedCreateMasterDataDisk}
- true
MasterInternetMaxBandwidthOut:
Default: 100
Type: Number
Label:
zh-cn: Master节点公网带宽
en: Master Node Internet Max Bandwidth Out
MinValue: 1
MaxValue: 100
Description:
zh-cn: 取值范围1-100
en: The value range is from 1 to 100.
AssociationPropertyMetadata:
Visible:
Condition:
Fn::Equals:
- ${NeedCreateMastersEip}
- true
MasterInternetChargeType:
Default: PayByTraffic
Type: String
Label:
zh-cn: 流量付费类型
en: Internet Charge Type
AllowedValues:
- PayByBandwidth
- PayByTraffic
AssociationPropertyMetadata:
LocaleKey: InternetChargeType
Visible:
Condition:
Fn::Equals:
- ${NeedCreateMastersEip}
- true
WorkerEcsInstanceType:
Type: String
Label:
en: Instance Type
zh-cn: 实例类型
Description:
en: Worker nodes must have a minimum of 1 core and 2GB of RAM.
zh-cn: 实例类型,Worker节点不可小于1核2G,否则可能会创建失败。
AssociationProperty: ALIYUN::ECS::Instance::InstanceType
AssociationPropertyMetadata:
ZoneId: ${ZoneId}
InstanceChargeType: ${InstanceChargeType}
WorkerInternetMaxBandwidthOut:
Default: 100
Type: Number
Label:
zh-cn: Worker节点公网带宽
en: Master Node Internet Max Bandwidth Out
MinValue: 1
MaxValue: 100
Description:
zh-cn: 取值范围1-100
en: The value range is from 1 to 100.
AssociationPropertyMetadata:
Visible:
Condition:
Fn::Equals:
- ${NeedCreateWorkersEip}
- true
WorkerInternetChargeType:
Default: PayByTraffic
Type: String
Label:
zh-cn: 流量付费类型
en: Internet Charge Type
AllowedValues:
- PayByBandwidth
- PayByTraffic
AssociationPropertyMetadata:
LocaleKey: InternetChargeType
Visible:
Condition:
Fn::Equals:
- ${NeedCreateWorkersEip}
- true
WorkerAmount:
Type: Number
Default: 1
Label:
en: Worker amount.
zh-cn: Worker节点数量
Description:
zh-cn: Worker节点数量,最少为1
en: Worker amount, must at least 1.
MinValue: 1
WorkerSystemDiskCategory:
Default: cloud_essd
Label:
zh-cn: 系统盘类型
en: System Disk Type
Type: String
Description:
zh-cn: 系统盘类型,须选择实例支持的磁盘类型。
en: System disk type, you must select the type of disk that the instance.
AllowedValues:
- cloud_efficiency
- cloud_ssd
- cloud_essd
AssociationPropertyMetadata:
LocaleKey: DiskCategory
WorkerSystemDiskSize:
Default: 40
Type: Number
Description:
zh-cn: 系统盘大小, 取值范围:[40, 500], 单位:GB。
en: 'System disk size of each node, range of values: 40-500, units: GB.'
MinValue: 40
MaxValue: 500
Label:
zh-cn: 系统盘空间
en: System Disk Space
WorkerDataDiskCategory:
Default: cloud_essd
Label:
zh-cn: 数据盘类型
en: Data Disk Type
Type: String
Description:
zh-cn: 数据盘类型,须选择实例支持的磁盘类型。
en: Data disk type, you must select the type of disk that the instance.
AllowedValues:
- cloud_efficiency
- cloud_ssd
- cloud_essd
AssociationPropertyMetadata:
LocaleKey: DiskCategory
Visible:
Condition:
Fn::Equals:
- ${NeedCreateWorkerDataDisk}
- true
WorkerDataDiskSize:
Default: 40
Type: Number
Description:
zh-cn: 数据盘大小, 取值范围:[40, 500], 单位:GB。
en: 'System disk size of each node, range of values: 40-500, units: GB.'
MinValue: 40
MaxValue: 500
Label:
zh-cn: 数据盘空间
en: Data Disk Space
AssociationPropertyMetadata:
Visible:
Condition:
Fn::Equals:
- ${NeedCreateWorkerDataDisk}
- true
InstancePassword:
NoEcho: true
Type: String
Description:
en: Server login password, Length 8-30, must contain three(Capital letters, lowercase letters, numbers, ()`~!@#$%^&*_-+=|{}[]:;'<>,.?/ Special symbol in)
zh-cn: Master节点与Worker节点登录密码,长度8-30,必须包含三项(大写字母、小写字母、数字、 ()`~!@#$%^&*_-+=|{}[]:;'<>,.?/ 中的特殊符号)。
AllowedPattern: '[0-9A-Za-z\_\-\&:;''<>,=%`~!@#\(\)\$\^\*\+\|\{\}\[\]\.\?\/]+$'
Label:
en: Instance Password
zh-cn: 实例密码
ConstraintDescription:
en: Length 8-30, must contain three(Capital letters, lowercase letters, numbers, ()`~!@#$%^&*_-+=|{}[]:;'<>,.?/ Special symbol in)
zh-cn: 长度8-30,必须包含三项(大写字母、小写字母、数字、 ()`~!@#$%^&*_-+=|{}[]:;'<>,.?/ 中的特殊符号)。
MinLength: 8
MaxLength: 30
AssociationProperty: ALIYUN::ECS::Instance::Password
AckDistroVersion:
Type: String
Label:
zh-cn: Ack-Distro基础镜像版本
en: Ack-Distro base image version.
Description:
zh-cn: Ack-Distro镜像版本,<a href="https://github.com/AliyunContainerService/ackdistro/releases/">版本说明</a>。
en: Ack-Distro Image Version,<a href="https://github.com/AliyunContainerService/ackdistro/releases/">Version Description</a>.
AllowedValues:
- v1-22-15-ack-10
- v1-20-11-ack-23
Default: v1-22-15-ack-10
NeedCreateApiServerEip:
Type: Boolean
Default: false
Description:
zh-cn: 创建Eip,并将该EIP与内网SLB实例绑定,获得从公网访问集群 API Server 的能力。
en: Create an EIP and bind it to the internal SLB instance to gain the ability to access the API Server of the cluster from the internet.
Label:
zh-cn: 创建EIP用于API Server
en: Create EIP for API Server.
NeedCreateSNAT:
Type: Boolean
Default: false
Description:
zh-cn: >-
为专有网络配置SNAT,这样集群节点和应用将具有公网访问能力。<br>
若您所选的VPC中已有绑定了弹性公网的NAT网关,ACK将默认使用该网关。
en: >-
Configure SNAT for the proprietary network so that cluster nodes and applications have public network access.<br>
If there is no NAT gateway or it is not bound to the elastic public network in your selected VPC,
this option must be enabled, otherwise the creation will fail.<br>
If a NAT gateway with an elastic public network bound to it already exists in your selected VPC,
you can leave this option unchecked and ACK will use the existing gateway by default.
Label:
zh-cn: 配置SNAT
en: Create SNAT.
NeedCreateMastersEip:
Type: Boolean
Default: false
Label:
zh-cn: 开启master节点公网
en: Enable public network for master node.
NeedCreateWorkersEip:
Type: Boolean
Default: false
Label:
zh-cn: 开启worker节点公网
en: Enable public network for worker node.
NeedCreateMasterDataDisk:
Type: Boolean
Default: false
Label:
zh-cn: 创建master节点数据盘
en: Create master node data disk.
NeedCreateWorkerDataDisk:
Type: Boolean
Default: false
Label:
zh-cn: 创建worker节点数据盘
en: Create worker node data disk.
Conditions:
IfCreateApiServerEIP:
Fn::Equals:
- Ref: NeedCreateApiServerEip
- true
IfCreateSNAT:
Fn::Equals:
- Ref: NeedCreateSNAT
- true
IfCreateMastersEip:
Fn::Equals:
- Ref: NeedCreateMastersEip
- true
IfCreateWorkersEip:
Fn::Equals:
- Ref: NeedCreateWorkersEip
- true
IfCreateMasterDataDisk:
Fn::Equals:
- Ref: NeedCreateMasterDataDisk
- true
IfCreateWorkerDataDisk:
Fn::Equals:
- Ref: NeedCreateWorkerDataDisk
- true
Resources:
# 新建安全组
EcsSecurityGroup:
Type: ALIYUN::ECS::SecurityGroup
Properties:
SecurityGroupName:
Ref: ALIYUN::StackName
VpcId:
Ref: VpcId
SecurityGroupEgress:
- PortRange: '-1/-1'
Priority: 1
IpProtocol: all
DestCidrIp: 0.0.0.0/0
NicType: intranet
# 仅开放api server端口
SecurityGroupIngress:
- PortRange: 6443/6443
Priority: 1
SourceCidrIp: 0.0.0.0/0
IpProtocol: tcp
NicType: intranet
# 定义waitCondition和waitConditionHandle来等待命令执行完毕部署成功
WaitCondition:
Type: ALIYUN::ROS::WaitCondition
Properties:
Count: 1
Handle:
Ref: WaitConditionHandle
Timeout: 2000
WaitConditionHandle:
Type: ALIYUN::ROS::WaitConditionHandle
MasterEcsInstanceGroup:
Type: ALIYUN::ECS::InstanceGroup
Properties:
ZoneId:
Ref: ZoneId
# 实例名
InstanceName:
Fn::Join:
- '-'
- - Ref: ALIYUN::StackName
- 'master-[1,3]'
IoOptimized: optimized
# 付费类型
InstanceChargeType:
Ref: PayType
PeriodUnit:
Ref: PayPeriodUnit
Period:
Ref: PayPeriod
# 网络配置
VpcId:
Ref: VpcId
VSwitchId:
Ref: VSwitchId
SecurityGroupId:
Ref: EcsSecurityGroup
# 磁盘类型和大小
SystemDiskCategory:
Ref: MasterSystemDiskCategory
SystemDiskSize:
Ref: MasterSystemDiskSize
DiskMappings:
Fn::If:
- IfCreateMasterDataDisk
- - Category:
Ref: MasterDataDiskCategory
Size:
Ref: MasterDataDiskSize
- Ref: ALIYUN::NoValue
MaxAmount:
Ref: MasterAmount
# 镜像
ImageId: centos_7
# 实例类型
InstanceType:
Ref: MasterEcsInstanceType
Password:
Ref: InstancePassword
AllocatePublicIP:
Ref: NeedCreateMastersEip
InternetMaxBandwidthOut:
Fn::If:
- IfCreateMastersEip
- Ref: MasterInternetMaxBandwidthOut
- Ref: ALIYUN::NoValue
InternetChargeType:
Fn::If:
- IfCreateMastersEip
- Ref: MasterInternetChargeType
- Ref: ALIYUN::NoValue
Slb:
Type: ALIYUN::SLB::LoadBalancer
Properties:
VpcId:
Ref: VpcId
VSwitchId:
Ref: VSwitchId
LoadBalancerName:
Fn::Join:
- '-'
- - 'slb'
- Ref: ALIYUN::StackName
PayType:
Ref: PayType
PricingCycle:
Ref: PayPeriodUnit
Duration:
Ref: PayPeriod
AddressType: intranet
LoadBalancerSpec:
Ref: LoadBalancerSpec
AutoPay: true
SlbBackendServerAttachment:
DependsOn:
- MasterEcsInstanceGroup
Type: ALIYUN::SLB::BackendServerAttachment
Properties:
BackendServerList:
Fn::GetAtt:
- MasterEcsInstanceGroup
- InstanceIds
LoadBalancerId:
Ref: Slb
BackendServerWeightList:
- 100
- 100
SlbListener:
DependsOn:
- Slb
Type: ALIYUN::SLB::Listener
Properties:
Persistence:
CookieTimeout: 60
StickySession: 'on'
PersistenceTimeout: 180
XForwardedFor: 'off'
StickySessionType: insert
ListenerPort: 6443
Bandwidth: -1
HealthCheck:
HttpCode: http_2xx,http_3xx,http_4xx,http_5xx
HealthCheckType: tcp
UnhealthyThreshold: 3
Timeout: 5
HealthyThreshold: 3
Port: 6443
URI: /
Interval: 2
LoadBalancerId:
Ref: Slb
BackendServerPort: 6443
Protocol: tcp
EipSlbAddress:
Type: ALIYUN::VPC::EIP
Condition: IfCreateApiServerEIP
Properties:
Name:
Ref: ALIYUN::StackName
InternetChargeType:
Ref: ApiServerInternetChargeType
Bandwidth:
Ref: ApiServerInternetMaxBandwidthOut
EipSlbAddressAssociation:
Type: ALIYUN::VPC::EIPAssociation
Condition: IfCreateApiServerEIP
Properties:
InstanceId:
Ref: Slb
AllocationId:
Ref: EipSlbAddress
WorkerEcsInstanceGroup:
Type: ALIYUN::ECS::InstanceGroup
Properties:
ZoneId:
Ref: ZoneId
# 实例名
InstanceName:
Fn::Join:
- '-'
- - Ref: ALIYUN::StackName
- 'worker-[1,3]'
IoOptimized: optimized
# 付费类型
InstanceChargeType:
Ref: PayType
PeriodUnit:
Ref: PayPeriodUnit
Period:
Ref: PayPeriod
# 网络配置
VpcId:
Ref: VpcId
VSwitchId:
Ref: VSwitchId
SecurityGroupId:
Ref: EcsSecurityGroup
# 磁盘类型和大小
SystemDiskCategory:
Ref: WorkerSystemDiskCategory
SystemDiskSize:
Ref: WorkerSystemDiskSize
DiskMappings:
Fn::If:
- IfCreateWorkerDataDisk
- - Category:
Ref: WorkerDataDiskCategory
Size:
Ref: WorkerDataDiskSize
- Ref: ALIYUN::NoValue
MaxAmount:
Ref: WorkerAmount
# 镜像
ImageId: centos_7
# 实例类型
InstanceType:
Ref: WorkerEcsInstanceType
Password:
Ref: InstancePassword
AllocatePublicIP:
Ref: NeedCreateWorkersEip
InternetMaxBandwidthOut:
Fn::If:
- IfCreateWorkersEip
- Ref: WorkerInternetMaxBandwidthOut
- Ref: ALIYUN::NoValue
InternetChargeType:
Fn::If:
- IfCreateWorkersEip
- Ref: WorkerInternetChargeType
- Ref: ALIYUN::NoValue
InstallMonitor:
Type: ALIYUN::ECS::RunCommand
DependsOn:
- WorkerEcsInstanceGroup
- MasterEcsInstanceGroup
Properties:
CommandContent:
Fn::Sub:
- |
#!/bin/sh
ARGUS_VERSION=3.5.7 /bin/bash -c "$(curl -sS https://cms-agent-${RegionId}.oss-${RegionId}-internal.aliyuncs.com/Argus/agent_install_ecs-1.7.sh)" >> /root/install_cms_agent.log 2>&1
- RegionId:
Ref: ALIYUN::Region
Type: RunShellScript
InstanceIds:
Fn::ListMerge:
- Fn::GetAtt:
- MasterEcsInstanceGroup
- InstanceIds
- Fn::GetAtt:
- WorkerEcsInstanceGroup
- InstanceIds
Timeout: '200'
# 到机器上执行命令
InstanceRunCommand:
Type: ALIYUN::ECS::RunCommand
DependsOn:
- WorkerEcsInstanceGroup
- MasterEcsInstanceGroup
Properties:
CommandContent:
Fn::Sub:
- |
#!/bin/bash
# 安装sealer
ARCH=amd64
get_arch=`arch`
if [[ $get_arch != "x86_64" ]];then
ARCH=arm64
fi
# 部署物功能暂不支持参数化和特殊符合如中划线等,所以只能暂时这么写了
if [[ ${!ARCH} == "amd64" ]];then
# 根据版本选择对应的部署物
echo "deploy amd64"
# 使用-q是为了避免云助手执行时影响后续输出
wget -q '{{ computenest::file::sealerAmd64 }}' -O sealer-latest-linux-amd64.tar.gz && \
tar -xvf sealer-latest-linux-${!ARCH}.tar.gz -C /usr/bin
if [[ ${AckDistroVersion} == "v1-22-15-ack-10" ]];then
wget -q '{{ computenest::file::ackdistroAmd64V12215Ack10 }}'
elif [[ ${AckDistroVersion} == "v1-20-11-ack-23" ]];then
wget -q '{{ computenest::file::ackdistroAmd64V12011Ack23 }}'
fi
else
echo "deploy arm64"
wget -q '{{ computenest::file::sealerArm64 }}' -O sealer-latest-linux-arm64.tar.gz && \
tar -xvf sealer-latest-linux-${!ARCH}.tar.gz -C /usr/bin
if [[ ${AckDistroVersion} == "v1-22-15-ack-10" ]];then
wget -q '{{ computenest::file::ackdistroArm64V12215Ack10 }}'
elif [[ ${AckDistroVersion} == "v1-20-11-ack-23" ]];then
wget -q '{{ computenest::file::ackdistroArm64V12011Ack23 }}'
fi
fi
sealer load -i ackdistro-${!ARCH}-${AckDistroVersion}.tar
sealer run ack-agility-registry.cn-shanghai.cr.aliyuncs.com/ecp_builder/ackdistro:${AckDistroVersion} -m ${Masters} -n ${Workers} -p ${Password} >> deployK8sOutput.txt 2>&1
if [ ${NeedCreateApiServerEip} ];then
# cert for external ip
sed 's#https://apiserver.cluster.local:6443#https://${ExternalIp}:6443#g' ~/.kube/config > ~/.kube/external_ip_config
sealer cert --alt-names ${ExternalIp}
echo "公网方式 通过 kubectl 连接 Kubernetes 集群"
echo "1. 安装和设置 kubectl 客户端。有关详细信息请参见: https://kubernetes.io/docs/tasks/tools/"
echo "2. 配置集群凭证:将以下内容复制到本地计算机 $HOME/.kube/config 文件中(没有~/.kube目录请新建),配置完成后,即可使用 kubectl 从计算机访问 Kubernetes 集群。"
cat ~/.kube/external_ip_config
echo "
"
fi
sed 's#https://apiserver.cluster.local:6443#https://${InternalIp}:6443#g' ~/.kube/config > ~/.kube/internal_ip_config
echo "私网方式 通过 kubectl 连接 Kubernetes 集群"
echo "1. 安装和设置 kubectl 客户端。有关详细信息请参见: https://kubernetes.io/docs/tasks/tools/"
echo "2. 配置集群凭证:将以下内容复制到本地计算机 $HOME/.kube/config 文件中(没有~/.kube目录请新建),配置完成后,即可使用 kubectl 从计算机访问 Kubernetes 集群。"
cat ~/.kube/internal_ip_config
# 执行成功回调WaitCondition结束waitCondition的等待
${CurlCli} -d "{\"Data\" : \"Success\", \"status\" : \"SUCCESS\"}" > /dev/null 2>/dev/null
- Masters:
Fn::Join:
- ','
- Fn::GetAtt:
- MasterEcsInstanceGroup
- PrivateIps
Workers:
Fn::Join:
- ','
- Fn::GetAtt:
- WorkerEcsInstanceGroup
- PrivateIps
Password:
Ref: InstancePassword
CurlCli:
Fn::GetAtt:
- WaitConditionHandle
- CurlCli
AckDistroVersion:
Ref: AckDistroVersion
NeedCreateApiServerEip:
Ref: NeedCreateApiServerEip
ExternalIp:
Fn::If:
- IfCreateApiServerEIP
- Fn::GetAtt:
- EipSlbAddress
- EipAddress
- Ref: ALIYUN::NoValue
InternalIp:
Fn::GetAtt:
- Slb
- IpAddress
Type: RunShellScript
InstanceIds:
- Fn::Select:
- 0
- Fn::GetAtt:
- MasterEcsInstanceGroup
- InstanceIds
Timeout: '2000'
VpcNatGateway:
Type: ALIYUN::VPC::NatGateway
Condition: IfCreateSNAT
Properties:
NatGatewayName:
Ref: ALIYUN::StackName
VpcId:
Ref: VpcId
VSwitchId:
Ref: VSwitchId
# 创建用于公网访问的NAT网关的EIP
ElasticIpForNat:
Type: ALIYUN::VPC::EIP
Condition: IfCreateSNAT
Properties:
Name:
Ref: ALIYUN::StackName
InternetChargeType:
Ref: ClusterInternetChargeType
Bandwidth:
Ref: ClusterInternetMaxBandwidthOut
# 绑定EIP和Nat网关
ElasticIpForNatAssociation:
Type: ALIYUN::VPC::EIPAssociation
Condition: IfCreateSNAT
DependsOn:
- ElasticIpForNat
- VpcNatGateway
Properties:
AllocationId:
Fn::GetAtt:
- ElasticIpForNat
- AllocationId
InstanceId:
Fn::GetAtt:
- VpcNatGateway
- NatGatewayId
# 配置NAT网关中的源地址转换表
SNatEntry:
Type: ALIYUN::ECS::SNatEntry
Condition: IfCreateSNAT
DependsOn:
- ElasticIpForNatAssociation
Properties:
SNatIp:
Fn::GetAtt:
- ElasticIpForNat
- EipAddress
SNatTableId:
Fn::GetAtt:
- VpcNatGateway
- SNatTableId
SourceVSwitchId:
Ref: VSwitchId
Outputs:
ApiServerPublicAddress:
Condition: IfCreateApiServerEIP
Description:
zh-cn: ApiServer公网地址
en: Api Server Public IP Address
Value:
Fn::Sub:
- ${ApiServerIp}:6443
- ApiServerIp:
Fn::GetAtt:
- EipSlbAddress
- EipAddress
ApiServerPrivateAddress:
Description:
zh-cn: ApiServer私网地址
en: Api Server Private IP Address
Value:
Fn::Sub:
- ${ApiServerIp}:6443
- ApiServerIp:
Fn::GetAtt:
- Slb
- IpAddress
NatEip:
Condition: IfCreateSNAT
Description:
zh-cn: 用于集群公网访问的网关公网Ip
en: Gateway public IP address used for public access to the cluster.
Value:
Fn::GetAtt:
- ElasticIpForNat
- EipAddress
MasterPublicIp:
Condition: IfCreateMastersEip
Description:
zh-cn: Master公网IP地址
en: Master Private IP Addresses
Value:
Fn::GetAtt:
- MasterEcsInstanceGroup
- PublicIps
MasterPrivateIp:
Description:
zh-cn: Master内网IP地址
en: Master Private IP Addresses
Value:
Fn::GetAtt:
- MasterEcsInstanceGroup
- PrivateIps
WorkerPublicIp:
Condition: IfCreateWorkersEip
Description:
zh-cn: Worker公网IP地址
en: Worker Private IP Addresses
Value:
Fn::GetAtt:
- WorkerEcsInstanceGroup
- PublicIps
WorkerPrivateIp:
Description:
zh-cn: Worker内网IP地址
en: Private IP Addresses
Value:
Fn::GetAtt:
- WorkerEcsInstanceGroup
- PrivateIps
ConnectApiServer:
Description:
zh-cn: 如何连接ApiServer
en: How Connect With Api Server
Value:
Fn::Sub:
- |
获取集群访问凭证方式: <br>
方式1:运维管理页中,选择执行"获取集群凭证"运维项,在执行结果中查看凭证。<br>
方式2:远程连接master节点,公网访问凭证:~/.kube/external_ip_config,私网访问凭证: ~/.kube/internal_ip_config <br>
方式3:<br>
1.登录阿里云ECS控制台:${AssistantAddress}。<br>