1

我对 aws 上的 k8s 集群有疑问。我试图在 aws 上创建集群。第一步是创建:

kops create cluster --name=kubernetes.xarva.stream --state=s3://kops-bucket-pnz-se-kube1 --node-count=2 --node-size=t2.micro --master-size=t2.micro --dns-zone=kubernetes.xarva.stream --zones=eu-central-1a

并顺利完成。但是当我尝试使用以下命令更新集群时:

kops update cluster kubernetes.xarva.stream --state=s3://kops-b                                                                                        ucket-pnz-se-kube1 --yes

我收到了这个错误:

error writing completed cluster spec: error writing configuration file s3://kops                                                                                        -bucket-pnz-se-kube1/kubernetes.xarva.stream/cluster.spec: error writing s3://ko                                                                                        ps-bucket-pnz-se-kube1/kubernetes.xarva.stream/cluster.spec: RequestTimeout: You                                                                                        r socket connection to the server was not read from or written to within the tim                                                                                        eout period. Idle connections will be closed.
    status code: 400, request id: 2***********3, host id: *********************************************6 

在 s3 存储桶上,我找到了配置,所以似乎是读取问题。有人遇到这个问题吗?任何想法如何解决它?谢谢

4

1 回答 1

0

RequestTimeout:您与服务器的套接字连接未在超时期限内读取或写入。空闲连接将被关闭。

此错误表示您在从安装了 kops 的位置访问 AWS S3 时遇到问题。
确保您有权访问 S3,然后重试或尝试从其他地方执行此操作。

于 2018-04-23T10:54:05.213 回答