gpt4 book ai didi

kubernetes - 将外部磁盘附加到 aws 集群 kubernetes

转载 作者:行者123 更新时间:2023-12-04 07:56:58 25 4
gpt4 key购买 nike

我在 AWS 中有一个集群并在那里进行了部署。现在我想在那里附加一个外部 AWS 磁盘。我正在关注教程,但没有得到如何在那里指示我的磁盘。这是代码:

apiVersion: v1
kind: Pod
metadata:
name: test-ebs
spec:
containers:
- image: k8s.gcr.io/test-webserver
name: test-container
volumeMounts:
- mountPath: /test-ebs
name: test-volume
volumes:
- name: test-volume
# This AWS EBS volume must already exist.
awsElasticBlockStore:
volumeID: "<volume id>"
fsType: ext4
在我看来,我应该以音量指示我的磁盘。那么我应该在哪里获取卷 ID?以及如何将其连接到我的集群?

最佳答案

volumeID :这是将使用的 AWS 卷。
您可以使用 AWS CLI 获取分配给您的实例的卷 ID。
命令行命令:aws ec2 describe-volumesdoc使用 describe-volumes 获取卷 ID
例如:

apiVersion: "v1"
kind: "PersistentVolume"
metadata:
name: "pv0001"
spec:
capacity:
storage: "5Gi"
accessModes:
- "ReadWriteOnce"
awsElasticBlockStore:
fsType: "ext4"
volumeID: "vol-f37a03aa"

关于kubernetes - 将外部磁盘附加到 aws 集群 kubernetes,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66651842/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com