forked from Azure/review-checklists
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aks_checklist.ja.json
1168 lines (1168 loc) · 62.1 KB
/
aks_checklist.ja.json
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
{
"categories": [
{
"name": "ID およびアクセス管理"
},
{
"name": "ネットワーク トポロジと接続性"
},
{
"name": "BC および DR"
},
{
"name": "ガバナンスとセキュリティ"
},
{
"name": "コストガバナンス"
},
{
"name": "オペレーションズ"
},
{
"name": "アプリケーションの展開"
}
],
"items": [
{
"category": "BC および DR",
"guid": "bc14aea6-e65d-48d9-a3ad-c218e6436b06",
"ha": 1,
"link": "https://learn.microsoft.com/azure/cloud-adoption-framework/ready/enterprise-scale/business-continuity-and-disaster-recovery",
"severity": "高い",
"subcategory": "必要条件",
"text": "SLA、RTO(目標復旧時間)、RPO(目標復旧時点)などの非機能要件を定義します。"
},
{
"category": "BC および DR",
"guid": "36cb45e5-7960-4332-9bdf-8cc23318da61",
"ha": 1,
"link": "https://docs.microsoft.com/azure/cloud-adoption-framework/ready/enterprise-scale/business-continuity-and-disaster-recovery",
"severity": "高い",
"subcategory": "災害復旧",
"text": "DRテストを定期的にスケジュールして実行する"
},
{
"category": "BC および DR",
"guid": "170265f4-bb46-4a39-9af7-f317284797b1",
"ha": 1,
"link": "https://docs.microsoft.com/azure/aks/operator-best-practices-multi-region",
"severity": "中程度",
"subcategory": "高可用性",
"text": "Azure Traffic Manager または Azure Front Door をリージョン フェールオーバーのグローバル ロード バランサーとして使用する"
},
{
"category": "BC および DR",
"graph": "where type=='microsoft.containerservice/managedclusters' | extend compliant= isnotnull(zones) | distinct id,compliant",
"guid": "578a219a-46be-4b54-9350-24922634292b",
"ha": 1,
"link": "https://docs.microsoft.com/azure/aks/availability-zones",
"severity": "中程度",
"subcategory": "高可用性",
"text": "可用性ゾーンが Azure リージョンでサポートされている場合は、その可用性ゾーンを使用する"
},
{
"category": "BC および DR",
"cost": -2,
"graph": "where type=='microsoft.containerservice/managedclusters' | extend compliant = (sku.tier=='Paid') | distinct id,compliant",
"guid": "71d41e36-10cc-457b-9a4b-1410d4395898",
"ha": 2,
"link": "https://docs.microsoft.com/azure/aks/uptime-sla",
"severity": "高い",
"subcategory": "高可用性",
"text": "SLA でサポートされる AKS オファリングを使用する"
},
{
"category": "BC および DR",
"guid": "c1288b3c-6a57-4cfc-9444-51e1a3d3453a",
"ha": 1,
"link": "https://docs.microsoft.com/azure/aks/operator-best-practices-scheduler",
"severity": "低い",
"simple": -1,
"subcategory": "高可用性",
"text": "ポッドとデプロイ定義で中断バジェットを使用する"
},
{
"category": "BC および DR",
"cost": -1,
"guid": "3c763963-7a55-42d5-a15e-401955387e5c",
"ha": 1,
"link": "https://docs.microsoft.com/azure/container-registry/container-registry-geo-replication",
"severity": "高い",
"subcategory": "高可用性",
"text": "プライベートレジストリを使用する場合は、複数のリージョンにイメージを格納するようにリージョンレプリケーションを構成します"
},
{
"category": "ID およびアクセス管理",
"graph": "where type=='microsoft.containerservice/managedclusters' | extend compliant = (properties.servicePrincipalProfile.clientId=='msi') | distinct id,compliant",
"guid": "ed127dd1-42b0-46b2-8c69-99a646f3389a",
"link": "https://docs.microsoft.com/azure/aks/use-managed-identity",
"severity": "高い",
"simple": 1,
"subcategory": "同一性",
"text": "サービス プリンシパルの代わりにマネージド ID を使用する"
},
{
"category": "ID およびアクセス管理",
"graph": "where type=='microsoft.containerservice/managedclusters' | extend compliant = isnotnull(properties.aadProfile) | distinct id,compliant",
"guid": "7e42c78e-78c0-46a6-8a21-94956e698dc4",
"link": "https://docs.microsoft.com/azure/aks/managed-aad",
"severity": "中程度",
"simple": 1,
"subcategory": "同一性",
"text": "認証を AAD と統合する (マネージド統合を使用)"
},
{
"category": "ID およびアクセス管理",
"guid": "a2fe27b2-e287-401a-8352-beedf79b488d",
"link": "https://docs.microsoft.com/azure/aks/control-kubeconfig-access",
"security": 1,
"severity": "中程度",
"simple": -1,
"subcategory": "同一性",
"text": "管理者 kubeconfig (資格情報の取得 --admin) へのアクセスを制限する"
},
{
"category": "ID およびアクセス管理",
"guid": "eec4962c-c3bd-421b-b77f-26e5e6b3bec3",
"link": "https://docs.microsoft.com/azure/aks/manage-azure-rbac",
"security": 1,
"severity": "中程度",
"simple": -1,
"subcategory": "同一性",
"text": "承認を AAD RBAC と統合する"
},
{
"category": "ID およびアクセス管理",
"guid": "d4f3537c-1346-4dc5-9027-a71ffe1bd05d",
"ha": 1,
"link": "https://docs.microsoft.com/azure/aks/operator-best-practices-identity",
"security": 1,
"severity": "高い",
"simple": -1,
"subcategory": "同一性",
"text": "Kubernetes で RBAC 特権を制限するために名前空間を使用する"
},
{
"category": "ID およびアクセス管理",
"guid": "d2e0d5d7-71d4-41e3-910c-c57b4a4b1410",
"link": "https://learn.microsoft.com/azure/aks/workload-identity-migration-sidecar",
"security": 1,
"severity": "中程度",
"simple": -1,
"subcategory": "同一性",
"text": "POD ID アクセス管理の場合は、Azure AD ワークロード ID (プレビュー) を使用します。"
},
{
"category": "ID およびアクセス管理",
"guid": "d2e0d5d7-71d4-41e3-910c-c57b4a4b1410",
"link": "https://learn.microsoft.com/azure/aks/managed-aad#non-interactive-sign-in-with-kubelogin",
"security": 1,
"severity": "中程度",
"simple": -1,
"subcategory": "同一性",
"text": "AKS の非対話型ログインの場合は、kubelogin (プレビュー) を使用します。"
},
{
"category": "ID およびアクセス管理",
"graph": "where type=='microsoft.containerservice/managedclusters' | extend compliant = (properties.disableLocalAccounts==true) | distinct id,compliant",
"guid": "d2e0d5d7-71d4-41e3-910c-c57b4a4b1410",
"link": "https://learn.microsoft.com/azure/aks/managed-aad#disable-local-accounts",
"security": 1,
"severity": "中程度",
"simple": -1,
"subcategory": "同一性",
"text": "AKS ローカル アカウントを無効にする"
},
{
"category": "ID およびアクセス管理",
"guid": "d2e0d5d7-71d4-41e3-910c-c57b4a4b1410",
"link": "https://learn.microsoft.com/azure/aks/managed-aad#configure-just-in-time-cluster-access-with-azure-ad-and-aks",
"security": 1,
"severity": "低い",
"simple": -1,
"subcategory": "同一性",
"text": "必要に応じて構成する ジャストインタイムクラスターアクセス"
},
{
"category": "ID およびアクセス管理",
"guid": "d2e0d5d7-71d4-41e3-910c-c57b4a4b1410",
"link": "https://learn.microsoft.com/azure/aks/managed-aad#use-conditional-access-with-azure-ad-and-aks",
"security": 1,
"severity": "低い",
"simple": -1,
"subcategory": "同一性",
"text": "必要に応じて、AKS の AAD 条件付きアクセスを構成する"
},
{
"category": "ID およびアクセス管理",
"guid": "d2e0d5d7-71d4-41e3-910c-c57b4a4b1410",
"link": "https://learn.microsoft.com/azure/aks/use-group-managed-service-accounts",
"security": 1,
"severity": "低い",
"simple": -1,
"subcategory": "同一性",
"text": "Windows AKS ワークロードに必要な場合は、gMSA を構成します。"
},
{
"category": "ID およびアクセス管理",
"guid": "d2e0d5d7-71d4-41e3-910c-c57b4a4b1410",
"link": "https://learn.microsoft.com/azure/aks/use-managed-identity#use-a-pre-created-kubelet-managed-identity",
"security": 1,
"severity": "中程度",
"simple": -1,
"subcategory": "同一性",
"text": "より細かく制御するには、マネージドKubeletアイデンティティの使用を検討してください"
},
{
"category": "ネットワーク トポロジと接続性",
"graph": "where type=='microsoft.containerservice/managedclusters' | extend compliant = (properties.networkProfile.networkPlugin=='azure') | distinct id,compliant",
"guid": "a0f61565-9de5-458f-a372-49c831112dbd",
"link": "https://docs.microsoft.com/azure/aks/operator-best-practices-network",
"severity": "高い",
"simple": 1,
"subcategory": "ティッカー",
"text": "要件に最適な CNI ネットワーク プラグインを選択する (Azure CNI を推奨)"
},
{
"category": "ネットワーク トポロジと接続性",
"guid": "7faf12e7-0943-4f63-8472-2da29c2b1cd6",
"link": "https://docs.microsoft.com/azure/aks/configure-azure-cni",
"scale": 1,
"severity": "高い",
"subcategory": "ティッカー",
"text": "Azure CNI を使用している場合は、ノードあたりのポッドの最大数を考慮して、それに応じてサブネットのサイズを設定します"
},
{
"category": "ネットワーク トポロジと接続性",
"guid": "22f54b29-bade-43aa-b1e8-c38ec9366673",
"link": "https://docs.microsoft.com/azure/aks/configure-azure-cni",
"scale": 1,
"severity": "高い",
"simple": -1,
"subcategory": "ティッカー",
"text": "Azure CNI を使用している場合は、最大ポッド/ノード数 (既定値は 30) を確認します。"
},
{
"category": "ネットワーク トポロジと接続性",
"description": "内部アプリの場合、組織は多くの場合、ファイアウォールで AKS サブネット全体を開きます。これにより、ノードへのネットワーク アクセスも開かれ、ポッドへのネットワーク アクセスも可能になる可能性があります (Azure CNI を使用している場合)。LoadBalancer IP が別のサブネットにある場合は、この IP のみをアプリ クライアントで使用できる必要があります。別の理由は、AKS サブネット内の IP アドレスが不足しているリソースである場合、その IP アドレスをサービスに使用すると、クラスターの最大スケーラビリティが低下することです。",
"guid": "13c00567-4b1e-4945-a459-c373e7ed6162",
"link": "https://docs.microsoft.com/azure/aks/internal-lb",
"security": 1,
"severity": "低い",
"simple": -1,
"subcategory": "ティッカー",
"text": "プライベート IP ロードバランサー サービスを使用する場合は、(AKS サブネットではなく) 専用サブネットを使用します。"
},
{
"category": "ネットワーク トポロジと接続性",
"guid": "43f63047-22d9-429c-8b1c-d622f54b29ba",
"link": "https://docs.microsoft.com/azure/aks/configure-azure-cni",
"scale": 1,
"severity": "高い",
"subcategory": "ティッカー",
"text": "それに応じてサービスのIPアドレス範囲のサイズを設定します(クラスターのスケーラビリティが制限されます)"
},
{
"category": "ネットワーク トポロジと接続性",
"graph": "where type=='microsoft.containerservice/managedclusters' | extend compliant = (properties.networkProfile.outboundType=='userDefinedRouting') | distinct id,compliant",
"guid": "3b365a91-7ecb-4e48-bbe5-4cd7df2e8bba",
"link": "https://docs.microsoft.com/azure/aks/limit-egress-traffic",
"security": 2,
"severity": "高い",
"simple": -2,
"subcategory": "安全",
"text": "AzFW/NVA を使用してエグレス トラフィックをフィルター処理します (セキュリティ要件で義務付けられている場合)"
},
{
"category": "ネットワーク トポロジと接続性",
"graph": "where type=='microsoft.containerservice/managedclusters' | extend compliant = ((isnull(properties.apiServerAccessProfile.enablePrivateCluster) or properties.apiServerAccessProfile.enablePrivateCluster==false) and isnotnull(properties.apiServerAccessProfile.authorizedIPRanges)) | distinct id,compliant",
"guid": "c4581559-bb91-463e-a908-aed8c44ce3b2",
"link": "https://docs.microsoft.com/azure/aks/api-server-authorized-ip-ranges",
"security": 1,
"severity": "中程度",
"simple": -1,
"subcategory": "安全",
"text": "パブリック API エンドポイントを使用している場合は、アクセスできる IP アドレスを制限する"
},
{
"category": "ネットワーク トポロジと接続性",
"guid": "b3808b9f-a1cf-4204-ad01-3a923ce474db",
"link": "https://docs.microsoft.com/azure/aks/concepts-network",
"scale": 1,
"severity": "中程度",
"simple": -1,
"subcategory": "拡張性",
"text": "イングレス コントローラーを使用して、LoadBalancer タイプのサービスで公開する代わりに Web ベースのアプリを公開する"
},
{
"category": "ネットワーク トポロジと接続性",
"guid": "b3808b9f-a1cf-4204-ad01-3a923ce474db",
"link": "https://learn.microsoft.com/azure/aks/nat-gateway",
"scale": 1,
"severity": "低い",
"simple": -1,
"subcategory": "拡張性",
"text": "Azue NAT ゲートウェイをアウトバウンドタイプとして使用して、エグレス トラフィックをスケーリングする"
},
{
"category": "ネットワーク トポロジと接続性",
"guid": "b3808b9f-a1cf-4204-ad01-3a923ce474db",
"link": "https://learn.microsoft.com/azure/aks/configure-azure-cni#dynamic-allocation-of-ips-and-enhanced-subnet-support",
"scale": 1,
"severity": "中程度",
"simple": -1,
"subcategory": "拡張性",
"text": "Azure CNI IP の枯渇を回避するために IP の動的割り当てを使用する"
},
{
"category": "ネットワーク トポロジと接続性",
"guid": "cbd8ac2a-aebc-4a2a-94da-1dbf3dc99248",
"link": "https://azure.github.io/application-gateway-kubernetes-ingress/setup/install-existing/",
"security": 1,
"severity": "中程度",
"simple": -1,
"subcategory": "おすすめの方法",
"text": "AGIC を使用している場合は、クラスタ間で AppGW を共有しないでください。"
},
{
"category": "ネットワーク トポロジと接続性",
"guid": "c3c39c98-6bb2-4c12-859a-114b5e3df584",
"link": "https://docs.microsoft.com/azure/private-link/private-link-overview",
"security": 1,
"severity": "中程度",
"simple": -1,
"subcategory": "費用",
"text": "プライベート エンドポイント (推奨) または仮想ネットワーク サービス エンドポイントを使用してクラスターから PaaS サービスにアクセスする"
},
{
"category": "ネットワーク トポロジと接続性",
"graph": "where type=='microsoft.containerservice/managedclusters' | where isnotnull(properties.apiServerAccessProfile.enablePrivateCluster) | extend compliant = (properties.apiServerAccessProfile.enablePrivateCluster==true) | distinct id, compliant",
"guid": "ecccd979-3b6b-4cda-9b50-eb2eb03dda6d",
"link": "https://docs.microsoft.com/azure/aks/private-clusters",
"security": 1,
"severity": "高い",
"simple": -1,
"subcategory": "安全",
"text": "要件で義務付けられている場合は、プライベートクラスターを使用する"
},
{
"category": "ネットワーク トポロジと接続性",
"graph": "where type=='microsoft.containerservice/managedclusters' | where isnotnull(properties.apiServerAccessProfile.enablePrivateCluster) | extend compliant = (properties.apiServerAccessProfile.enablePrivateCluster==true) | distinct id, compliant",
"guid": "ecccd979-3b6b-4cda-9b50-eb2eb03dda6d",
"link": "https://learn.microsoft.com/azure/aks/use-network-policies",
"security": 1,
"severity": "中程度",
"simple": -1,
"subcategory": "安全",
"text": "Windows 2019 および 2022 AKS ノードの場合、Calico ネットワーク ポリシーを使用できます"
},
{
"category": "ネットワーク トポロジと接続性",
"graph": "where type=='microsoft.containerservice/managedclusters' | extend compliant = isnotnull(properties.networkProfile.networkPolicy) | distinct id,compliant",
"guid": "58d7c892-ddb1-407d-9769-ae669ca48e4a",
"link": "https://docs.microsoft.com/azure/aks/use-network-policies",
"security": 1,
"severity": "高い",
"subcategory": "安全",
"text": "Kubernetes ネットワーク ポリシー オプションを有効にする (Calico/Azure)"
},
{
"category": "ネットワーク トポロジと接続性",
"guid": "85e2223e-ce8b-4b12-907c-a5f16f158e3e",
"link": "https://docs.microsoft.com/azure/aks/operator-best-practices-network",
"security": 1,
"severity": "高い",
"simple": -1,
"subcategory": "安全",
"text": "Kubernetes ネットワーク ポリシーを使用してクラスター内のセキュリティを強化する"
},
{
"category": "ネットワーク トポロジと接続性",
"cost": -1,
"guid": "a3a92c2d-e7e2-4165-a3a8-7af4a7a1f893",
"link": "https://docs.microsoft.com/azure/aks/operator-best-practices-network",
"security": 2,
"severity": "高い",
"simple": -1,
"subcategory": "安全",
"text": "Web ワークロード (UI または API) に WAF を使用する"
},
{
"category": "ネットワーク トポロジと接続性",
"cost": -2,
"graph": "Resources | where type=~'microsoft.containerservice/managedclusters' | project resourceGroup,name,pools=properties.agentPoolProfiles | mv-expand pools | project subnetId=tostring(pools.vnetSubnetID) | where isnotempty(subnetId) | join (Resources | where type=='microsoft.network/virtualnetworks' | project id,resourceGroup,name,enableDdosProtection=tostring(properties.enableDdosProtection),subnets=properties.subnets | mv-expand subnets | project id,resourceGroup,name,enableDdosProtection,subnetId=tostring(subnets.id)) on subnetId | distinct id,resourceGroup,name,enableDdosProtection | extend compliant = (enableDdosProtection == 'true')",
"guid": "9bda4776-8f24-4c11-9775-c2ea55b46a94",
"link": "https://docs.microsoft.com/azure/virtual-network/ddos-protection-overview",
"security": 2,
"severity": "中程度",
"subcategory": "安全",
"text": "AKS 仮想ネットワークで DDoS 標準を使用する"
},
{
"category": "ネットワーク トポロジと接続性",
"cost": -2,
"graph": "Resources | where type=~'microsoft.containerservice/managedclusters' | project resourceGroup,name,pools=properties.agentPoolProfiles | mv-expand pools | project subnetId=tostring(pools.vnetSubnetID) | where isnotempty(subnetId) | join (Resources | where type=='microsoft.network/virtualnetworks' | project id,resourceGroup,name,enableDdosProtection=tostring(properties.enableDdosProtection),subnets=properties.subnets | mv-expand subnets | project id,resourceGroup,name,enableDdosProtection,subnetId=tostring(subnets.id)) on subnetId | distinct id,resourceGroup,name,enableDdosProtection | extend compliant = (enableDdosProtection == 'true')",
"guid": "9bda4776-8f24-4c11-9775-c2ea55b46a94",
"link": "https://learn.microsoft.com/azure/aks/http-proxy",
"security": 2,
"severity": "低い",
"subcategory": "安全",
"text": "必要に応じて、会社の HTTP プロキシを追加します。"
},
{
"category": "ネットワーク トポロジと接続性",
"graph": "where type=='microsoft.containerservice/managedclusters' | extend compliant = (isnull(properties.addonProfiles.httpApplicationRouting) or properties.addonProfiles.httpApplicationRouting.enabled==false) | distinct id,compliant",
"guid": "8008ae7d-7e4b-4475-a6c8-bdbf59bce65d",
"link": "https://docs.microsoft.com/azure/aks/http-application-routing",
"scale": 1,
"severity": "高い",
"simple": -1,
"subcategory": "おすすめの方法",
"text": "AKS アプリケーション ルーティング アドオンを使用しない"
},
{
"category": "ネットワーク トポロジと接続性",
"graph": "where type=='microsoft.containerservice/managedclusters' | extend compliant = (isnull(properties.addonProfiles.httpApplicationRouting) or properties.addonProfiles.httpApplicationRouting.enabled==false) | distinct id,compliant",
"guid": "8008ae7d-7e4b-4475-a6c8-bdbf59bce65d",
"link": "https://learn.microsoft.com/azure/virtual-network/accelerated-networking-overview",
"scale": 1,
"severity": "中程度",
"simple": -1,
"subcategory": "おすすめの方法",
"text": "Windows ワークロードの場合は、高速ネットワークを使用する"
},
{
"category": "ネットワーク トポロジと接続性",
"graph": "where type=='microsoft.containerservice/managedclusters' | extend compliant = (tolower(properties.networkProfile.loadBalancerSku)=='standard') | distinct id,compliant",
"guid": "ba7da7be-9952-4914-a384-5d997cb39132",
"link": "https://docs.microsoft.com/azure/aks/load-balancer-standard",
"scale": 1,
"severity": "高い",
"subcategory": "おすすめの方法",
"text": "標準のALBを使用します(基本的なALBとは対照的に)"
},
{
"category": "ネットワーク トポロジと接続性",
"cost": -1,
"guid": "e8a03f97-8794-468d-96a7-86d60f96c97b",
"ha": 1,
"link": "https://docs.microsoft.com/azure/expressroute/designing-for-disaster-recovery-with-expressroute-privatepeering",
"severity": "中程度",
"subcategory": "は",
"text": "ハイブリッド接続が必要な場合は、2xER または ER+VPN を使用して可用性を向上させます"
},
{
"category": "ネットワーク トポロジと接続性",
"guid": "e9855d04-c3c3-49c9-a6bb-2c12159a114b",
"link": "https://docs.microsoft.com/azure/aks/servicemesh-about",
"security": 1,
"severity": "中程度",
"simple": -2,
"subcategory": "安全",
"text": "高度なマイクロサービス通信管理にサービスメッシュを使用することを検討する"
},
{
"category": "ネットワーク トポロジと接続性",
"guid": "e9855d04-c3c3-49c9-a6bb-2c12159a114b",
"link": "https://learn.microsoft.com/azure/aks/use-byo-cni",
"security": 1,
"severity": "低い",
"simple": -2,
"subcategory": "オペレーションズ",
"text": "必要に応じて、独自のCNIプラグインを追加します"
},
{
"category": "ネットワーク トポロジと接続性",
"guid": "e9855d04-c3c3-49c9-a6bb-2c12159a114b",
"link": "https://learn.microsoft.com/azure/aks/use-multiple-node-pools#assign-a-public-ip-per-node-for-your-node-pools",
"security": 1,
"severity": "低い",
"simple": -2,
"subcategory": "オペレーションズ",
"text": "必要に応じて、AKS でノードごとにパブリック IP を構成します"
},
{
"category": "ネットワーク トポロジと接続性",
"guid": "e9855d04-c3c3-49c9-a6bb-2c12159a114b",
"link": "https://learn.microsoft.com/azure/aks/use-multiple-node-pools#add-a-node-pool-with-a-unique-subnet",
"security": 1,
"severity": "中程度",
"simple": -2,
"subcategory": "おすすめの方法",
"text": "Azure CNI を使用している場合は、ノードプールに異なるサブネットを使用することを検討してください"
},
{
"category": "ガバナンスとセキュリティ",
"guid": "5e3df584-eccc-4d97-a3b6-bcda3b50eb2e",
"link": "https://github.com/Azure/secrets-store-csi-driver-provider-azure",
"security": 1,
"severity": "中程度",
"simple": -1,
"subcategory": "秘密",
"text": "CSI シークレット ストア ドライバーを使用して Azure Key Vault にシークレットを格納する"
},
{
"category": "ガバナンスとセキュリティ",
"guid": "b03dda6d-58d7-4c89-8ddb-107d5769ae66",
"link": "https://docs.microsoft.com/azure/aks/update-credentials",
"security": 1,
"severity": "高い",
"subcategory": "秘密",
"text": "クラスターのユーザー サービス プリンシパルの場合は、資格情報を定期的に更新します (四半期ごとなど)。"
},
{
"category": "ガバナンスとセキュリティ",
"graph": "where type=='microsoft.containerservice/managedclusters' | extend compliant = (isnotnull(properties.addonProfiles.azurepolicy) and properties.addonProfiles.azurepolicy.enabled==true) | distinct id,compliant",
"guid": "9ca48e4a-85e2-4223-bce8-bb12307ca5f1",
"link": "https://docs.microsoft.com/azure/governance/policy/concepts/policy-for-kubernetes",
"security": 1,
"severity": "中程度",
"simple": -1,
"subcategory": "コンプライアンス",
"text": "Azure Policy for Kubernetes を使用してクラスターのコンプライアンスを確保する"
},
{
"category": "ガバナンスとセキュリティ",
"cost": -1,
"graph": "where type=='microsoft.containerservice/managedclusters' | project id,resourceGroup,name,pools=properties.agentPoolProfiles | project id,name,resourceGroup,poolcount=array_length(pools) | extend compliant = (poolcount > 1)",
"guid": "6f158e3e-a3a9-42c2-be7e-2165c3a87af4",
"link": "https://docs.microsoft.com/azure/aks/use-system-pools",
"security": 1,
"severity": "中程度",
"simple": -1,
"subcategory": "コンプライアンス",
"text": "ユーザー/システムノードプールによるコントロールプレーンからのアプリケーションの分離"
},
{
"category": "ガバナンスとセキュリティ",
"guid": "a7a1f893-9bda-4477-98f2-4c116775c2ea",
"ha": 1,
"link": "https://docs.microsoft.com/azure/aks/use-system-pools",
"severity": "低い",
"simple": -1,
"subcategory": "コンプライアンス",
"text": "システムノードプールにtaintを追加して専用にする"
},
{
"category": "ガバナンスとセキュリティ",
"guid": "55b46a94-8008-4ae7-b7e4-b475b6c8bdbf",
"link": "https://docs.microsoft.com/azure/container-registry/",
"security": 1,
"severity": "中程度",
"simple": -1,
"subcategory": "コンプライアンス",
"text": "イメージにプライベート レジストリ (ACR など) を使用する"
},
{
"category": "ガバナンスとセキュリティ",
"cost": -1,
"guid": "59bce65d-e8a0-43f9-9879-468d66a786d6",
"link": "https://docs.microsoft.com/azure/security-center/container-security",
"security": 1,
"severity": "中程度",
"subcategory": "コンプライアンス",
"text": "イメージの脆弱性をスキャンする"
},
{
"category": "ガバナンスとセキュリティ",
"cost": -1,
"guid": "cc639637-a652-42ac-89e8-06965388e9de",
"link": "https://docs.microsoft.com/azure/security-center/container-security",
"security": 1,
"severity": "中程度",
"subcategory": "コンプライアンス",
"text": "Azure セキュリティ センターを使用してセキュリティ体制の脆弱性を検出する"
},
{
"category": "ガバナンスとセキュリティ",
"cost": -1,
"guid": "cc639637-a652-42ac-89e8-06965388e9de",
"link": "https://learn.microsoft.com/azure/aks/use-multiple-node-pools#add-a-fips-enabled-node-pool",
"security": 1,
"severity": "低い",
"subcategory": "コンプライアンス",
"text": "必要に応じて FIPS を設定する"
},
{
"category": "ガバナンスとセキュリティ",
"cost": -1,
"guid": "cc639637-a652-42ac-89e8-06965388e9de",
"link": "https://learn.microsoft.com/azure/aks/use-kms-etcd-encryption",
"security": 1,
"severity": "中程度",
"subcategory": "秘密",
"text": "必要に応じて、キー管理サービス etcd 暗号化を追加します。"
},
{
"category": "ガバナンスとセキュリティ",
"cost": -1,
"guid": "cc639637-a652-42ac-89e8-06965388e9de",
"link": "https://learn.microsoft.com/azure/confidential-computing/confidential-nodes-aks-overview",
"security": 1,
"severity": "低い",
"subcategory": "秘密",
"text": "必要に応じて、AKS のコンフィデンシャル コンピューティングの使用を検討する"
},
{
"category": "ガバナンスとセキュリティ",
"cost": -1,
"guid": "cc639637-a652-42ac-89e8-06965388e9de",
"link": "https://learn.microsoft.com/azure/defender-for-cloud/defender-for-containers-enable",
"security": 1,
"severity": "中程度",
"subcategory": "秘密",
"text": "コンテナーに Defender を使用することを検討してください"
},
{
"category": "ガバナンスとセキュリティ",
"guid": "d167dd18-2b0a-4c24-8b99-9a646f8389a7",
"link": "https://docs.microsoft.com/azure/aks/operator-best-practices-cluster-isolation",
"security": 1,
"severity": "高い",
"subcategory": "コンプライアンス",
"text": "アプリの分離要件 (名前空間/ノードプール/クラスター) を定義する"
},
{
"category": "コストガバナンス",
"cost": 1,
"guid": "f82cb8eb-8c0a-4a63-a25a-4956eaa8dc4a",
"link": "https://docs.microsoft.com/azure/cloud-adoption-framework/scenarios/aks/eslz-cost-governance-with-kubecost",
"severity": "低い",
"subcategory": "費用",
"text": "kubecost などの外部アプリケーションを使用して、さまざまなユーザーに cust を割り当てる"
},
{
"category": "コストガバナンス",
"cost": 1,
"guid": "f82cb8eb-8c0a-4a63-a25a-4956eaa8dc4a",
"link": "https://learn.microsoft.com/azure/aks/node-pool-snapshot",
"severity": "低い",
"subcategory": "費用",
"text": "必要に応じて、ノードプールスナップショットをスケーリングします"
},
{
"category": "コストガバナンス",
"cost": 1,
"guid": "f82cb8eb-8c0a-4a63-a25a-4956eaa8dc4a",
"link": "https://learn.microsoft.com/azure/aks/scale-down-mode",
"severity": "低い",
"subcategory": "費用",
"text": "スケールダウンモードを使用してノードを削除/割り当て解除する"
},
{
"category": "コストガバナンス",
"cost": 1,
"guid": "f82cb8eb-8c0a-4a63-a25a-4956eaa8dc4a",
"link": "https://learn.microsoft.com/azure/aks/gpu-multi-instance",
"severity": "中程度",
"subcategory": "費用",
"text": "必要に応じて、AKS クラスターでマルチインスタンス分割 GPU を使用する"
},
{
"category": "コストガバナンス",
"cost": 1,
"guid": "f82cb8eb-8c0a-4a63-a25a-4956eaa8dc4a",
"link": "https://learn.microsoft.com/azure/aks/start-stop-nodepools",
"severity": "低い",
"subcategory": "費用",
"text": "開発/テスト クラスターを実行している場合は、ノードプールの開始/停止を使用します"
},
{
"category": "オペレーションズ",
"cost": -1,
"graph": "where type=='microsoft.containerservice/managedclusters' | project id,resourceGroup,name,pools=properties.agentPoolProfiles | mvexpand pools | extend compliant = (pools.osDiskType=='Ephemeral') | project id,name=strcat(name,'-',pools.name), resourceGroup, compliant",
"guid": "24367b33-6971-45b1-952b-eee0b9b588de",
"link": "https://docs.microsoft.com/azure/aks/cluster-configuration",
"scale": 1,
"severity": "高い",
"subcategory": "貯蔵",
"text": "エフェメラル OS ディスクを使用する"
},
{
"category": "オペレーションズ",
"cost": -1,
"guid": "fc4972cc-3cd2-45bf-a707-6e9eab4bed32",
"link": "https://docs.microsoft.com/azure/virtual-machines/disks-types",
"scale": 1,
"severity": "高い",
"subcategory": "貯蔵",
"text": "非エフェメラル ディスクの場合、複数のポッドを実行するために高いパフォーマンスが必要であり、既定の AKS ログ ローテーションしきい値で巨大なログが生成されるため、多くのポッド/ノードを実行する場合は、ノードに高い IOPS とより大きな OS ディスクを使用します。"
},
{
"category": "オペレーションズ",
"cost": -1,
"guid": "fc4972cc-3cd2-45bf-a707-6e9eab4bed32",
"link": "https://learn.microsoft.com/azure/aks/use-ultra-disks",
"scale": 1,
"severity": "低い",
"subcategory": "貯蔵",
"text": "ハイパー パフォーマンス ストレージ オプションの場合は、AKS で Ultra ディスクを使用します"
},
{
"category": "オペレーションズ",
"guid": "9f7547c1-747d-4c56-868a-714435bd19dd",
"ha": 1,
"link": "https://docs.microsoft.com/azure/aks/operator-best-practices-multi-region",
"severity": "中程度",
"simple": -1,
"subcategory": "貯蔵",
"text": "クラスターに状態を保持することは避け、データを外部 (AzStorage、AzSQL、Cosmos など) に格納します。"
},
{
"category": "オペレーションズ",
"cost": -1,
"guid": "24429eb7-2281-4376-85cc-57b4a4b18142",
"link": "https://docs.microsoft.com/azure/aks/operator-best-practices-storage",
"scale": 1,
"severity": "中程度",
"subcategory": "貯蔵",
"text": "AzFiles Standard を使用する場合は、パフォーマンス上の理由から AzFiles Premium や ANF を検討してください。"
},
{
"category": "オペレーションズ",
"guid": "83958a8c-2689-4b32-ab57-cfc64546135a",
"ha": 1,
"link": "https://docs.microsoft.com/azure/aks/availability-zones#azure-disk-availability-zone-support",
"severity": "中程度",
"simple": -1,
"subcategory": "貯蔵",
"text": "Azure ディスクと AZ を使用する場合は、適切なゾーンにストレージをプロビジョニングするために VolumeBindingMode:WaitForFirstConsumer を使用して LRS ディスクのゾーン内にノードプールを配置するか、複数のゾーンにまたがるノードプールに ZRS ディスクを使用することを検討してください。"
},
{
"category": "オペレーションズ",
"guid": "337453a3-cc63-4963-9a65-22ac19e80696",
"ha": 1,
"link": "https://docs.microsoft.com/azure/advisor/advisor-get-started",
"severity": "低い",
"simple": -1,
"subcategory": "コンプライアンス",
"text": "Azure アドバイザーでクラスターに関する推奨事項を定期的に確認する"
},
{
"category": "オペレーションズ",
"guid": "5388e9de-d167-4dd1-a2b0-ac241b999a64",
"link": "https://docs.microsoft.com/azure/aks/operator-best-practices-scheduler",
"severity": "低い",
"simple": 1,
"subcategory": "コンプライアンス",
"text": "VSCODE + kubeadvisorなどのインテリジェントなテキストエディタを使用してYAMLマニフェストを開発します"
},
{
"category": "オペレーションズ",
"guid": "5388e9de-d167-4dd1-a2b0-ac241b999a64",
"link": "https://learn.microsoft.com/azure/aks/certificate-rotation",
"severity": "低い",
"simple": 1,
"subcategory": "コンプライアンス",
"text": "AKS の自動証明書のローテーションを有効にする"
},
{
"category": "オペレーションズ",
"guid": "6f8389a7-f82c-4b8e-a8c0-aa63a25a4956",
"ha": 1,
"link": "https://docs.microsoft.com/azure/azure-monitor/insights/container-insights-overview",
"severity": "高い",
"simple": -1,
"subcategory": "モニタリング",
"text": "コンテナインサイト(またはPrometheusなどの他のツール)を使用してクラスターメトリクスを監視する"
},
{
"category": "オペレーションズ",
"graph": "where type=='microsoft.containerservice/managedclusters' | extend compliant = (isnotnull(properties.addonProfiles.omsagent) and properties.addonProfiles.omsagent.enabled==true) | distinct id,compliant",
"guid": "eaa8dc4a-2436-47b3-9697-15b1752beee0",
"ha": 1,
"link": "https://docs.microsoft.com/azure/azure-monitor/insights/container-insights-overview",
"severity": "高い",
"simple": -1,
"subcategory": "モニタリング",
"text": "Container Insights (または Telegraf/ElasticSearch などの他のツール) を使用してクラスター ログを保存および分析します。"
},
{
"category": "オペレーションズ",
"guid": "67f7a9ed-5b31-4f38-a3f3-9812b2463cff",
"ha": 1,
"link": "https://docs.microsoft.com/azure/azure-monitor/insights/container-insights-metric-alerts",
"severity": "高い",
"simple": -1,
"subcategory": "警告",
"text": "最も重要なメトリックに関するアラートを構成します (推奨事項については、「コンテナーの分析情報」を参照してください)"
},
{
"category": "オペレーションズ",
"guid": "e189c599-df0d-45a7-9dd4-ce32c1881370",
"link": "https://docs.microsoft.com/azure/aks/supported-kubernetes-versions",
"security": 1,
"severity": "高い",
"simple": -1,
"subcategory": "コンプライアンス",
"text": "Kubernetes バージョンを定期的に (四半期ごとなど) アップグレードするか、AKS 自動アップグレード機能を使用する定期的なプロセスを用意する"
},
{
"category": "オペレーションズ",
"guid": "6f7c4c0d-4e51-4464-ad24-57ed67138b82",
"link": "https://docs.microsoft.com/azure/aks/node-updates-kured",
"severity": "高い",
"simple": -1,
"subcategory": "コンプライアンス",
"text": "ノード イメージのアップグレードを使用していない場合は、Linux ノードのアップグレードに kured を使用します。"
},
{
"category": "オペレーションズ",
"guid": "139c9580-ade3-426a-ba09-cf157d9f6477",
"link": "https://docs.microsoft.com/azure/aks/node-image-upgrade",
"security": 1,
"severity": "高い",
"simple": -1,
"subcategory": "コンプライアンス",
"text": "クラスタノードイメージを定期的に(毎週など)アップグレードする定期的なプロセスを用意する"
},
{
"category": "オペレーションズ",
"guid": "0102ce16-ee30-41e6-b882-e52e4621dd68",
"link": "https://docs.microsoft.com/azure/architecture/example-scenario/bedrock/bedrock-automated-deployments",
"severity": "低い",
"subcategory": "コンプライアンス",
"text": "アプリケーションまたはクラスター構成を複数のクラスターにデプロイするための gitops を検討する"
},
{
"category": "オペレーションズ",
"guid": "0102ce16-ee30-41e6-b882-e52e4621dd68",
"link": "https://learn.microsoft.com/azure/aks/command-invoke",
"severity": "低い",
"subcategory": "コンプライアンス",
"text": "プライベート クラスターでの AKS コマンド呼び出しの使用を検討する"
},
{
"category": "オペレーションズ",
"cost": 1,
"guid": "c5a5b252-1e44-4a59-a9d2-399c4d7b68d0",
"link": "https://docs.microsoft.com/azure/aks/spot-node-pool",
"severity": "低い",
"simple": -1,
"subcategory": "費用",
"text": "時間的制約のないワークロードのスポットノードプールを検討する"
},
{
"category": "オペレーションズ",
"graph": "where type=='microsoft.containerservice/managedclusters' | extend compliant = (isnotnull(properties.addonProfiles.aciConnectorLinux) and properties.addonProfiles.aciConnectorLinux.enabled==true) | distinct id,compliant",
"guid": "c755562f-2b4e-4456-9b4d-874a748b662e",
"link": "https://docs.microsoft.com/azure/aks/concepts-scale",
"scale": 1,
"severity": "低い",
"simple": -1,
"subcategory": "費用",
"text": "迅速なバーストのために AKS 仮想ノードを検討する"
},
{
"category": "オペレーションズ",
"guid": "31d7aaab-7571-4449-ab80-53d89e89d17b",
"link": "https://learn.microsoft.com/azure/aks/node-auto-repair#node-autodrain",
"security": 1,
"severity": "低い",
"subcategory": "コンプライアンス",
"text": "計画されたイベントの場合は、ノード自動ドレインの使用を検討してください"
},
{
"category": "オペレーションズ",
"guid": "31d7aaab-7571-4449-ab80-53d89e89d17b",
"link": "https://docs.microsoft.com/azure/aks/faq",
"security": 1,
"severity": "高い",
"subcategory": "コンプライアンス",
"text": "独自のガバナンスプラクティスを開発して、ノードRG(別名「インフラRG」)のオペレーターによって変更が実行されないようにします。"
},
{
"category": "オペレーションズ",
"graph": "where type=='microsoft.containerservice/managedclusters' | extend compliant = (properties.nodeResourceGroup !startswith 'MC_') | distinct id,compliant",
"guid": "73b32a5a-67f7-4a9e-b5b3-1f38c3f39812",
"link": "https://docs.microsoft.com/azure/aks/cluster-configuration",
"severity": "低い",
"simple": 1,
"subcategory": "コンプライアンス",
"text": "カスタムノードRG(別名「インフラRG」)名を使用する"
},
{
"category": "オペレーションズ",
"guid": "b2463cff-e189-4c59-adf0-d5a73dd4ce32",
"ha": 1,
"link": "https://kubernetes.io/docs/setup/release/notes/",
"severity": "中程度",
"simple": -1,
"subcategory": "コンプライアンス",
"text": "非推奨の Kubernetes API を YAML マニフェストで使用しないでください"
},
{
"category": "オペレーションズ",
"guid": "c1881370-6f7c-44c0-b4e5-14648d2457ed",
"ha": 1,
"link": "https://docs.microsoft.com/azure-stack/aks-hci/adapt-apps-mixed-os-clusters",
"severity": "低い",
"simple": -1,
"subcategory": "コンプライアンス",
"text": "ウィンドウ ノードを汚染する"
},
{
"category": "オペレーションズ",
"guid": "67138b82-0102-4ce1-9ee3-01e6e882e52e",
"link": "https://docs.microsoft.com/virtualization/windowscontainers/deploy-containers/version-compatibility?tabs=windows-server-20H2%2Cwindows-10-20H2",
"severity": "低い",
"subcategory": "コンプライアンス",
"text": "Windowsコンテナのパッチレベルをホストパッチレベルと同期させる"
},
{
"category": "オペレーションズ",
"guid": "4621dd68-c5a5-4be2-bdb1-1726769ef669",
"ha": 1,
"link": "https://docs.microsoft.com/azure/azure-monitor/containers/container-insights-analyze",
"severity": "中程度",
"simple": -1,
"subcategory": "モニタリング",
"text": "ノードの CPU とメモリの使用率を監視する"
},
{
"category": "オペレーションズ",
"guid": "1a4835ac-9422-423e-ae80-b123081a5417",
"ha": 1,
"link": "https://docs.microsoft.com/azure/aks/configure-azure-cni",
"severity": "中程度",
"simple": -1,
"subcategory": "モニタリング",
"text": "Azure CNI を使用している場合は、ノードごとに消費されるポッド IP の割合を監視する"
},
{
"category": "オペレーションズ",
"description": "OS ディスク内の I/O は重要なリソースです。ノード内の OS が I/O で調整されると、予期しない動作が発生する可能性があり、通常はノードが NotReady と宣言されることになります。",
"guid": "415833ea-3ad3-4c2d-b733-165c3acbe04b",
"ha": 1,
"link": "https://docs.microsoft.com/azure/virtual-machines/premium-storage-performance",
"severity": "中程度",
"simple": -1,
"subcategory": "モニタリング",
"text": "ノード内の OS ディスク キューの深さを監視する"
},
{
"category": "オペレーションズ",
"guid": "be209d39-fda4-4777-a424-d116785c2fa5",
"ha": 1,
"link": "https://docs.microsoft.com/azure/aks/load-balancer-standard",
"severity": "中程度",
"simple": -1,
"subcategory": "モニタリング",
"text": "AzFW/NVA でエグレス フィルタリングを使用していない場合は、標準の ALB 割り当て SNAT ポートを監視します。"
},
{
"category": "オペレーションズ",
"guid": "74c2ee76-569b-4a79-a57e-dedf91b022c9",
"ha": 1,
"link": "https://docs.microsoft.com/azure/aks/aks-resource-health",
"severity": "中程度",
"subcategory": "モニタリング",
"text": "AKS クラスターのリソース正常性通知をサブスクライブする"
},
{
"category": "オペレーションズ",
"cost": -1,
"description": "クラスター レベルでの診断設定経由",
"guid": "5b56ad48-408f-4e72-934c-476ba280dcf5",
"ha": 1,
"link": "https://docs.microsoft.com/azure/aks/monitor-aks",
"severity": "低い",
"subcategory": "コンプライアンス",
"text": "マスター ログ (API ログ) を Azure Monitor または任意のログ管理ソリューションに送信する"
},
{
"category": "オペレーションズ",
"cost": -1,
"graph": "where type=='microsoft.containerservice/managedclusters' | extend compliant = (isnotnull(properties.austoscalerProfile)) | distinct id,compliant",
"guid": "90ce65de-8e13-4f9c-abd4-69266abca264",
"ha": 1,
"link": "https://docs.microsoft.com/azure/aks/concepts-scale",
"severity": "中程度",
"subcategory": "拡張性",
"text": "クラスター オートスケーラーを使用する"
},
{
"category": "オペレーションズ",
"cost": -1,
"graph": "where type=='microsoft.containerservice/managedclusters' | extend compliant = (isnotnull(properties.austoscalerProfile)) | distinct id,compliant",
"guid": "90ce65de-8e13-4f9c-abd4-69266abca264",
"ha": 1,
"link": "https://learn.microsoft.com/azure/aks/custom-node-configuration",
"severity": "低い",
"subcategory": "拡張性",
"text": "AKS ノード プールのノード構成をカスタマイズする"
},
{
"category": "オペレーションズ",
"guid": "faa19bfe-9d55-4d04-a3c4-919ca1b2d121",
"link": "https://docs.microsoft.com/azure/aks/concepts-scale",
"scale": 1,
"severity": "中程度",