在清单文件中为 EKS 集群分配角色?

时间:2021-02-04 18:02:40

标签: amazon-eks eksctl

我是 Kubernetes 的新手,正在使用 eksctl 在 AWS 中创建 EKS 集群。这是我的简单清单文件

kind: ClusterConfig
apiVersion: eksctl.io/v1alpha5

metadata:
  name: sandbox
  region: us-east-1
  version: "1.18"

managedNodeGroups:
  - name: ng-sandbox
    instanceType: r5a.xlarge
    privateNetworking: true
    desiredCapacity: 2
    minSize: 1
    maxSize: 4
    ssh:
      allow: true
      publicKeyName: my-ssh-key

fargateProfiles:
  - name: 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
  - name: fp-sandbox
    selectors:
      # All workloads in the "sandbox" Kubernetes namespace matching the
      # following label selectors will be scheduled onto Fargate:
      - namespace: sandbox
        labels:
          env: sandbox
          checks: passed

我创建了 2 个角色,EKSClusterRole 用于集群管理,EKSWorkerRole 用于工作节点?我在文件中的什么地方使用它们?我正在查看 eksctl Config file schema 页面,但我不清楚在清单文件中的何处使用它们。

1 个答案:

答案 0 :(得分:0)

正如您所提到的,它位于 managedNodeGroups docs

managedNodeGroups:
  - ...
    iam:
      instanceRoleARN: my-role-arn
      # or
      # instanceRoleName: my-role-name

您还应该阅读有关