我想在 k8s node1、node2 和 node3 中创建 3 个虚拟节点。要创建这些节点,我应该给出以下值:
- 姓名:
node_name
- MAC地址:
mac_address
- 公共IP:
public_ip
- pod_cidr:
pod_cidr
我必须创建一个我应该node_name
作为键的条件,基于节点名称 k8s 模板必须选择上述值。在不使用 ansible k8s 模块的情况下如何做到这一点?
我可以为 1 个节点执行此操作,在任务中提供 kubectl 命令,在模板中提供 k8s 模板文件,但我希望模板对所有 3 个节点都是通用的,并且它必须根据名称选择值。
模板文件:
apiVersion: v1
kind: Node
metadata:
name: node1
annotations:
# Provide the MAC address of the BIG-IP VXLAN tunnel
flannel.alpha.coreos.com/backend-data: '{"VtepMAC":"{{ mac_address }}"}'
flannel.alpha.coreos.com/backend-type: "vxlan"
flannel.alpha.coreos.com/kube-subnet-manager: "true"
# Provide the IP address you assigned as the BIG-IP VTEP
flannel.alpha.coreos.com/public-ip: "{{ public_ip }}"
spec:
# Define the flannel subnet you want to assign to the BIG-IP device.
# Be sure this subnet does not collide with any other Nodes' subnets.
podCIDR: "{{ pod_cidr }}"```
任务文件:
---
- name: "Create node1 dummy node"
command: kubectl apply --kubeconfig={{ kubeadmin_config }} -f templates/node1_dummy_node.yaml
delegate_to: "{{groups['k8s-master-primary'][0]}}"
run_once: true
请帮我为此创造适当的条件。