自訂 Amazon EKS啟動範本 - AWS Batch

本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。

自訂 Amazon EKS啟動範本

AWS Batch 在 Amazon 上EKS支援啟動範本。啟動範本可以執行的操作有限制。

重要

AWS Batch 執行 /etc/eks/bootstrap.sh。請勿在啟動範本或 /etc/eks/bootstrap.sh中執行 cloud-init user-data 指令碼。除了 參數之外,您還可以將其他--kubelet-extra-args參數新增至 bootstrap.sh。若要這麼做,請在 /etc/aws-batch/batch.config 檔案中設定 AWS_BATCH_KUBELET_EXTRA_ARGS 變數。如需詳細資訊,請參閱下列範例。

注意

如果在CreateComputeEnvironment呼叫 之後變更啟動範本, UpdateComputeEnvironment 必須呼叫 才能評估啟動範本的版本以進行取代。

新增kubelet額外的引數

AWS Batch 支援將額外的引數新增至 kubelet 命令。如需支援的參數清單,請參閱 kubelet 中的 Kubernetes 文件 。在下列範例中, --node-labels mylabel=helloworld 會新增至kubelet命令列。

MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="==MYBOUNDARY==" --==MYBOUNDARY== Content-Type: text/x-shellscript; charset="us-ascii" #!/bin/bash mkdir -p /etc/aws-batch echo AWS_BATCH_KUBELET_EXTRA_ARGS=\"--node-labels mylabel=helloworld\" >> /etc/aws-batch/batch.config --==MYBOUNDARY==--

設定容器執行時間

您可以使用 AWS Batch CONTAINER_RUNTIME環境變數,在受管節點上設定容器執行期。下列範例會將容器執行時間設定為 containerd bootstrap.sh 。如需詳細資訊,請參閱《》中的 containerd。Kubernetes 文件

注意

CONTAINER_RUNTIME 環境變數等同於 --container-runtime的選項bootstrap.sh。如需詳細資訊,請參閱 Options 中的 Kubernetes 文件

MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="==MYBOUNDARY==" --==MYBOUNDARY== Content-Type: text/x-shellscript; charset="us-ascii" #!/bin/bash mkdir -p /etc/aws-batch echo CONTAINER_RUNTIME=containerd >> /etc/aws-batch/batch.config --==MYBOUNDARY==--

安裝 Amazon EFS磁碟區

您可以使用啟動範本將磁碟區掛載到節點。在下列範例中,會使用 cloud-configpackagesruncmd設定。如需詳細資訊,請參閱中的雲端組態範例 cloud-init 文件

MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="==MYBOUNDARY==" --==MYBOUNDARY== Content-Type: text/cloud-config; charset="us-ascii" packages: - amazon-efs-utils runcmd: - file_system_id_01=fs-abcdef123 - efs_directory=/mnt/efs - mkdir -p ${efs_directory} - echo "${file_system_id_01}:/ ${efs_directory} efs _netdev,noresvport,tls,iam 0 0" >> /etc/fstab - mount -t efs -o tls ${file_system_id_01}:/ ${efs_directory} --==MYBOUNDARY==--

若要在任務中使用此磁碟區,必須在 eksProperties 參數中新增至 RegisterJobDefinition。下列範例是任務定義的很大一部分。

{ "jobDefinitionName": "MyJobOnEks_EFS", "type": "container", "eksProperties": { "podProperties": { "containers": [ { "image": "public.ecr.aws/amazonlinux/amazonlinux:2", "command": ["ls", "-la", "/efs"], "resources": { "limits": { "cpu": "1", "memory": "1024Mi" } }, "volumeMounts": [ { "name": "efs-volume", "mountPath": "/efs" } ] } ], "volumes": [ { "name": "efs-volume", "hostPath": { "path": "/mnt/efs" } } ] } } }

在節點中,Amazon EFS磁碟區會掛載在/mnt/efs目錄中。在 Amazon EKS任務的容器中,磁碟區會掛載在/efs目錄中。

IPv6 支援

AWS Batch 支援具有IPv6地址的 Amazon EKS叢集。 AWS Batch 支援不需要自訂。不過,在開始之前,建議您檢閱 Amazon EKS使用者指南將IPv6地址指派給 Pod 和服務中概述的考量事項和條件。