Add initial steps for workload cluster staging;Include govc (temporarily)
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Danny Bessems 2022-07-26 16:50:50 +02:00
parent d986d5ab25
commit ea20b1290c
5 changed files with 27 additions and 1 deletions

View File

@ -3,6 +3,7 @@
gather_facts: false
vars_files:
- metacluster.yml
- workloadcluster.yml
become: true
roles:
- os

View File

@ -1,11 +1,14 @@
- name: Pre-stage K3s components
import_tasks: k3s.yml
- name: Pre-stage meta components
- name: Pre-stage meta-cluster components
import_tasks: components.yml
- name: Pre-stage IaC repositories
import_tasks: config.yml
- name: Pre-stage workload-cluster components
import_tasks: staging.yml
- name: Cleanup
import_tasks: cleanup.yml

View File

@ -0,0 +1,14 @@
- name: Create folder structure(s)
ansible.builtin.file:
path: "{{ item }}"
state: directory
loop:
- /opt/workloadcluster/node-templates
- name: Download images
ansible.builtin.uri:
url: "{{ item.url }}"
dest: /opt/workloadcluster/node-templates/{{ item.name }}
loop: "{{ downstream.node_templates }}"
loop_control:
label: "{{ item.name }}"

View File

@ -132,6 +132,9 @@ dependencies:
static_binaries:
- filename: tea
url: https://dl.gitea.io/tea/0.8.0/tea-0.8.0-linux-amd64
- filename: govc
url: https://github.com/vmware/govmomi/releases/download/v0.29.0/govc_Linux_x86_64.tar.gz
archive: compressed
- filename: helm
url: https://get.helm.sh/helm-v3.9.0-linux-amd64.tar.gz
archive: compressed

View File

@ -0,0 +1,5 @@
downstream:
node_templates:
- url: https://stable.release.flatcar-linux.net/amd64-usr/3227.2.0/flatcar_production_vmware_ova.ova
name: flatcar.ova