【发布时间】:2021-07-08 00:39:52
【问题描述】:
我正在尝试使用 Fargate 创建 Kubernetes 集群。
我正在使用带有 .config 文件的 eksctl(如下)。
如果您有使用 Fargate 创建基本 Kubernetes 集群的配置文件,请分享。
我收到 ROLLBACK,我不明白此错误消息的含义。
No export named eksctl-<name>-cluster::SubnetsPublic found.
Rollback requested by user.
ROLLBACK_COMPLETE
配置文件:
apiVersion: eksctl.io/v1alpha5
kind: ClusterConfig
metadata:
name: test-kb-cluster-w-fg-profile
region: us-west-2
version: "1.19"
vpc:
subnets:
private:
us-west-2a: { id: subnet-<hash> }
us-west-2b: { id: subnet-<hash> }
us-west-2c: { id: subnet-<hash> }
nodeGroups:
- name: test-eks-linux-nodes
instanceType: t2.micro
desiredCapacity: 1
fargateProfiles:
- name: test-fp-default
selectors:
# All workloads in the "default" Kubernetes namespace will be
# scheduled onto Fargate:
- namespace: default
# All workloads in the "kube-system" Kubernetes namespace will be
# scheduled onto Fargate:
- namespace: kube-system
如果是的话
【问题讨论】:
标签: amazon-web-services amazon-eks aws-fargate