我不认为这是可能的。但是,您可以做的是sed
在运行命令之前将该文件用作模板并使用它。因为kubectl apply
我使用过这种技术并且效果很好。你甚至可以使用变量。例如:
template=`curl -sS https://raw.githubusercontent.com/kubernetes-sigs/aws-alb-ingress-controller/v1.1.4/docs/examples/alb-ingress-controller.yaml | sed -e "s/# - --cluster-name=devCluster/- --cluster-name=$CLUSTER_NAME/g" -e "s/# - --aws-vpc-id=vpc-xxxxxx/- --aws-vpc-id=$VPC_ID/g" -e "s/# - --aws-region=us-west-1/- --aws-region=$AWS_REGION/g"`
echo "$template" | kubectl apply -f -
我从来没有用过这个,eksctl
但我看不出它不应该工作的原因。
以类似的方式,您可以使用envsubst
.
apiVersion: eksctl.io/v1alpha5
kind: ClusterConfig
metadata:
name: ${CLUSTER_NAME}
region: eu-central-1
nodeGroups:
- name: ${CLUSTER_NAME}-group-1
[..]
- name: ${CLUSTER_NAME}-group-2
[..]
export CLUSTER_NAME=foo
cat cluster-config.yml | envsubst '${CLUSTER_NAME}' > cluster-config-foo.yml