Add missing key to dict #2
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2022-11-08 20:11:31 +01:00
parent fe8700f300
commit 1f4bbca7ec
5 changed files with 12 additions and 14 deletions

View File

@ -4,6 +4,7 @@
path: /opt/metacluster/container-images/*.tar
format: gz
remove: yes
ignore_errors: yes
- name: Cleanup tempfile
ansible.builtin.file:

View File

@ -23,6 +23,7 @@
network: "{{ vcenter_info.network }}"
resourcepool: "{{ vcenter_info.resourcepool }}"
cluster:
nodetemplate: "{{ downstream.node_template.image.name }}"
publickey: "{{ vapp['guestinfo.rootsshkey'] }}"
version: "{{ components.clusterapi.workload.version.k8s }}"
vip: "{{ vapp['workloadcluster.vip'] }}"

View File

@ -28,11 +28,11 @@ VSPHERE_STORAGE_POLICY: ""
VSPHERE_NETWORK: "{{ _template.hv.network }}"
VSPHERE_RESOURCE_POOL: "{{ _template.hv.resourcepool }}"
VSPHERE_FOLDER: ""
VSPHERE_TEMPLATE: "{{ _template.hv.nodetemplate }}"
VSPHERE_TEMPLATE: "{{ _template.cluster.nodetemplate }}"
VSPHERE_SSH_AUTHORIZED_KEY: "{{ _template.cluster.publickey }}"
KUBERNETES_VERSION: "{{ _template.cluster.version }}"
CONTROL_PLANE_ENDPOINT_IP: "{{ _template.cluster.vip }}"
VIP_NETWORK_INTERFACE: "ens192"
EXP_CLUSTER_RESOURCE_SET: "true"
VSPHERE_SSH_AUTHORIZED_KEY: "{{ _template.cluster.publickey }}"