- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
根据 https://cloud.google.com/kubernetes-engine/docs/concepts/regional-clusters#pd“一旦配置了永久性磁盘,任何引用该磁盘的 Pod 都会被安排到与该磁盘相同的区域。”但是我测试过,不是这样。
创建磁盘的过程:
gcloud compute disks create mongodb --size=1GB --zone=asia-east1-c
WARNING: You have selected a disk size of under [200GB]. This may result in poor I/O performance. For more information, see: https://developers.google.com/compute/docs/disks#performance.
Created [https://www.googleapis.com/compute/v1/projects/ornate-ensign-234106/zones/asia-east1-c/disks/mongodb].
NAME ZONE SIZE_GB TYPE STATUS
mongodb asia-east1-c 1 pd-standard READY
New disks are unformatted. You must format and mount a disk before it
can be used. You can find instructions on how to do this at:
https://cloud.google.com/compute/docs/disks/add-persistent-disk#formatting
集群条件:
Name Zone Recommendation In use by Internal IP External IP Connect
gke-kubia-default-pool-08dd2133-qbz6 asia-east1-a k8s-ig--c4addd497b1e0a6d, gke-kubia-default-pool-08dd2133-grp 10.140.0.17 (nic0)
35.201.224.238
gke-kubia-default-pool-183639fa-18vr asia-east1-c gke-kubia-default-pool-183639fa-grp, k8s-ig--c4addd497b1e0a6d 10.140.0.18 (nic0)
35.229.152.12
gke-kubia-default-pool-42725220-43q8 asia-east1-b gke-kubia-default-pool-42725220-grp, k8s-ig--c4addd497b1e0a6d 10.140.0.16 (nic0)
34.80.225.6
创建 pod 的 yaml:
apiVersion: v1
kind: Pod
metadata:
name: mongodb
spec:
volumes:
- name: mongodb-data
gcePersistentDisk:
pdName: mongodb
fsType: ext4
containers:
- image: mongo
name: mongodb
volumeMounts:
- name: mongodb-data
mountPath: /data/db
ports:
- containerPort: 27017
protocol: TCP
pod 预计将安排在 gke-kubia-default-pool-183639fa-18vr 上,它位于区域 asia-east1-c。但是:
C:\kube>kubectl get pod -o wide
NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE
fortune 2/2 Running 0 4h9m 10.56.3.5 gke-kubia-default-pool-42725220-43q8 <none>
kubia-4jmzg 1/1 Running 0 9d 10.56.1.6 gke-kubia-default-pool-183639fa-18vr <none>
kubia-j2lnr 1/1 Running 0 9d 10.56.3.4 gke-kubia-default-pool-42725220-43q8 <none>
kubia-lrt9x 1/1 Running 0 9d 10.56.0.14 gke-kubia-default-pool-08dd2133-qbz6 <none>
mongodb 0/1 ContainerCreating 0 55s <none> gke-kubia-default-pool-42725220-43q8 <none>
C:\kube>kubectl describe pod mongodb
Name: mongodb
Namespace: default
Priority: 0
PriorityClassName: <none>
Node: gke-kubia-default-pool-42725220-43q8/10.140.0.16
Start Time: Thu, 20 Jun 2019 15:39:13 +0800
Labels: <none>
Annotations: kubernetes.io/limit-ranger: LimitRanger plugin set: cpu request for container mongodb
Status: Pending
IP:
Containers:
mongodb:
Container ID:
Image: mongo
Image ID:
Port: 27017/TCP
Host Port: 0/TCP
State: Waiting
Reason: ContainerCreating
Ready: False
Restart Count: 0
Requests:
cpu: 100m
Environment: <none>
Mounts:
/data/db from mongodb-data (rw)
/var/run/secrets/kubernetes.io/serviceaccount from default-token-sd57s (ro)
Conditions:
Type Status
Initialized True
Ready False
ContainersReady False
PodScheduled True
Volumes:
mongodb-data:
Type: GCEPersistentDisk (a Persistent Disk resource in Google Compute Engine)
PDName: mongodb
FSType: ext4
Partition: 0
ReadOnly: false
default-token-sd57s:
Type: Secret (a volume populated by a Secret)
SecretName: default-token-sd57s
Optional: false
QoS Class: Burstable
Node-Selectors: <none>
Tolerations: node.kubernetes.io/not-ready:NoExecute for 300s
node.kubernetes.io/unreachable:NoExecute for 300s
Events:
Type Reason Age From Message
---- ------ ---- ---- -------
Normal Scheduled 10m default-scheduler Successfully assigned default/mongodb to gke-kubia-default-pool-42725220-43q8
Warning FailedMount 106s (x4 over 8m36s) kubelet, gke-kubia-default-pool-42725220-43q8 Unable to mount volumes for pod "mongodb_default(7fe9c096-932e-11e9-bb3d-42010a8c00de)": timeout expired waiting for volumes to attach or mount for pod "default"/"mongodb". list of unmounted volumes=[mongodb-data]. list of unattached volumes=[mongodb-data default-token-sd57s]
Warning FailedAttachVolume 9s (x13 over 10m) attachdetach-controller AttachVolume.Attach failed for volume "mongodb-data" : GCE persistent disk not found: diskName="mongodb" zone="asia-east1-b"
C:\kube>
有人知道为什么吗?
最佳答案
这里的问题是 pod 正尝试在 asia-east1-b 节点上配置,而磁盘未安装,因为它是在 asia-east1-c 中配置的。
你在这里可以做的是使用 nodeSelector这将向您的节点添加一个标签,然后您在您的 yaml 中为 pod 指定该标签。这样它将选择 asia-east1-c 中的节点并挂载磁盘。
关于google-cloud-platform - 如果您使用区域集群和永久性磁盘,则引用磁盘的 pod 不会自动调度到与磁盘相同的区域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56681433/
我创建了一个训练作业,我从大查询中获取数据、执行训练和部署模型。我想在这两种情况下自动开始训练: 向数据集添加了 1000 多个新行 有时间表(例如,每周一次) 我检查了 GCP Cloud Sche
我遇到以下警告: WARNING: You do not appear to have access to project [$PROJECT] or it does not exist. 在本地运行
我正在使用 Google Cloud Platform,我必须使用 java 非 Web 应用程序访问云功能,就像我尝试使用 Google Cloud Storage JSON API 从 Googl
我的问题是第三方开发人员如何通过我的身份平台登录用户?我查看了文档,但一无所获。 本质上,我想将 Identity Platform 用作 OIDC 提供者,但我不知道这是否受支持。 最佳答案 Clo
在我去这里的过去 12 个小时左右: https://console.developers.google.com/apis/credentials?project=MYPROJECTNAME 我只是得
我正在尝试创建一个 python 脚本来在 linux 机器上自动安装和配置某些程序。 我的想法是使用平台和多处理库来询问系统信息(platform.system、platform.linux_dis
我正在尝试创建没有控制台网页的 Google Cloud Platform 项目,因为我考虑创建多个项目。 因为我查了gcloud,目前只支持project describe和list。 https:
我正在使用 Google Cloud Scheduler 调用外部应用程序。 Google Cloud Scheduler 使用 OIDC 身份验证并使用服务帐户。我只能从 Google 服务帐户 U
如何在我的 Google Cloud Platform 帐户上启用 Google Authenticator 双重身份验证?我在 Web 界面中上下查看了“IAM 和管理员”,但没有看到在帐户上启用
我们在 Google Cloud 上设置了一个虚拟机,并希望能够自动或计划打开和关闭它。 我们内部有自动脚本,之后可以完成工作,到目前为止,我在 google 的文献中读到的更多与这些实例有关,但我找
我试图删除一个 GCP 项目,但不断弹出以下错误。 Lien origin You cannot delete this project because it is linked with a Dia
我从 Google Domains 购买了一个域,称为 example.com。 我已订阅 G Suite 基本版并创建了一个 admin@example.com 帐户以在 GCP 上使用,而不是我的
我构建了一个包含许多并行进程的 AI Platform 流水线。每个流程都会在 AI Platform 上启动一个训练作业,如下所示: gcloud ai-platform jobs submit t
我们正在验证函数输入时方法参数不为空,但这不适用于 Platform::String (或 Platform.String ,C# 或 C++ 之间没有区别),因为它们用空实例重载空字符串的语义。 考
这个问题比我想来这里的问题要简单一些,但我一直在努力寻找答案,但我绝对不能—— 谷歌云平台 HTTP 函数是否支持路由参数,如此处? http://expressjs.com/en/guide/rou
我正在使用 Kubernetes,我正在尝试创建一个 ingress resource .我使用以下方法创建它: $ kubectl create -f my-ingress.yaml 我等了一会儿,
我是 Google Cloud 的新手,所以我希望得到一些有关“组织”的指导。 我可以将项目从一个“组织”转移到另一个“组织”吗?我正在我的个人 GSuite 组织下启动一些项目,但我必须将它们转移到
在 GET 操作中,我想从返回的集合中排除具有等于“true”的“存档”字段的实体。 我希望这是我的端点(如/users 或/companies)的默认设置,并且我想避免手动添加 URL 过滤器,如
实例模板对于创建托管实例组至关重要。事实上,托管实例组对于在 GCP 中创建自动扩缩组至关重要。 这个问题是另一个问题 question's answer 的一部分,这是关于构建一个自动缩放和负载平衡
我正在将 GCP 用于多个相同的项目。对于每个新项目我都需要一个1 个 GPU 的配额(Tesla K80)。为了申请增加我的GPU配额,我打开console并导航至“IAM 和管理”>“配额”。我在
我是一名优秀的程序员,十分优秀!