当通过以下配置创建的 r6gd 实例部署在 Kubernetes 中时,AWS 似乎隐藏了我的 NVMe SSD。
# eksctl create cluster -f spot04test00.yaml
apiVersion: eksctl.io/v1alpha5
kind: ClusterConfig
metadata:
name: tidb-arm-dev #replace with your cluster name
region: ap-southeast-1 #replace with your preferred AWS region
nodeGroups:
- name: tiflash-1a
desiredCapacity: 1
availabilityZones: ["ap-southeast-1a"]
instancesDistribution:
instanceTypes: ["r6gd.medium"]
privateNetworking: true
labels:
dedicated: tiflashRun Code Online (Sandbox Code Playgroud)
正在运行的实例具有 80 GiB EBS gp3 块和零 NVMe SSD 存储,如图 1 所示。
为什么 Amazon 将 59GiB NVMe 替换为 80GiB EBS gp3 存储?
我的 NVMe 磁盘去哪儿了?
即使我使用非托管节点组预分配临时存储,它仍然显示 80 GiB EBS 存储(图 1)。 …