Compare commits
8 Commits
baf809159b
...
Appliance.
Author | SHA1 | Date | |
---|---|---|---|
5740faeb9d | |||
e057f313ea | |||
ac38731dcf | |||
9cbb84a0f3 | |||
066ec9a967 | |||
dda14af238 | |||
2db1c4d623 | |||
1451e8f105 |
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
**/hv.vcenter.yaml
|
||||||
|
**/ova.bootstrap.yaml
|
||||||
|
**/pb.secrets.yaml
|
||||||
|
**/pwdfile
|
@ -29,4 +29,3 @@
|
|||||||
- import_tasks: manifests.yml
|
- import_tasks: manifests.yml
|
||||||
- import_tasks: kubeadm.yml
|
- import_tasks: kubeadm.yml
|
||||||
- import_tasks: containerimages.yml
|
- import_tasks: containerimages.yml
|
||||||
- import_tasks: nodetemplates.yml
|
|
||||||
|
@ -1,4 +0,0 @@
|
|||||||
- name: Download node-template image
|
|
||||||
ansible.builtin.uri:
|
|
||||||
url: "{{ components.clusterapi.workload.node_template.url }}"
|
|
||||||
dest: /opt/workloadcluster/node-templates/{{ components.clusterapi.workload.node_template.url | basename}}
|
|
@ -1,5 +1,32 @@
|
|||||||
- block:
|
- block:
|
||||||
|
|
||||||
|
- name: Create target namespace(s)
|
||||||
|
kubernetes.core.k8s:
|
||||||
|
name: "{{ item }}"
|
||||||
|
kind: Namespace
|
||||||
|
state: present
|
||||||
|
kubeconfig: "{{ kubeconfig.path }}"
|
||||||
|
loop:
|
||||||
|
# - argo-workflows
|
||||||
|
- firstboot
|
||||||
|
|
||||||
|
- name: Create ClusterRoleBinding for default serviceaccount
|
||||||
|
kubernetes.core.k8s:
|
||||||
|
state: present
|
||||||
|
kubeconfig: "{{ kubeconfig.path }}"
|
||||||
|
definition: |
|
||||||
|
kind: ClusterRoleBinding
|
||||||
|
metadata:
|
||||||
|
name: argo-workflows-firstboot-clusteradmin
|
||||||
|
roleRef:
|
||||||
|
apiGroup: rbac.authorization.k8s.io
|
||||||
|
kind: ClusterRole
|
||||||
|
name: cluster-admin
|
||||||
|
subjects:
|
||||||
|
- kind: ServiceAccount
|
||||||
|
name: default
|
||||||
|
namespace: firstboot
|
||||||
|
|
||||||
- name: Install argo-workflows chart
|
- name: Install argo-workflows chart
|
||||||
kubernetes.core.helm:
|
kubernetes.core.helm:
|
||||||
name: argo-workflows
|
name: argo-workflows
|
||||||
@ -10,8 +37,15 @@
|
|||||||
kubeconfig: "{{ kubeconfig.path }}"
|
kubeconfig: "{{ kubeconfig.path }}"
|
||||||
values: "{{ components['argo-workflows'].chart_values }}"
|
values: "{{ components['argo-workflows'].chart_values }}"
|
||||||
|
|
||||||
# - name: Trigger handlers
|
- name: Ensure argo workflows API availability
|
||||||
# ansible.builtin.meta: flush_handlers
|
ansible.builtin.uri:
|
||||||
|
url: https://workflow.{{ vapp['metacluster.fqdn'] }}/api/v1/version
|
||||||
|
method: GET
|
||||||
|
register: api_readycheck
|
||||||
|
until:
|
||||||
|
- api_readycheck.json.version is defined
|
||||||
|
retries: "{{ playbook.retries }}"
|
||||||
|
delay: "{{ (storage_benchmark | int) * (playbook.delay.long | int) }}"
|
||||||
|
|
||||||
module_defaults:
|
module_defaults:
|
||||||
ansible.builtin.uri:
|
ansible.builtin.uri:
|
||||||
|
@ -172,7 +172,7 @@
|
|||||||
|
|
||||||
- name: Generate nodepool kustomization manifest
|
- name: Generate nodepool kustomization manifest
|
||||||
ansible.builtin.template:
|
ansible.builtin.template:
|
||||||
src: kustomization.nodepool.j2
|
src: kustomization.longhorn-storage.j2
|
||||||
dest: "{{ capi_clustermanifest.path }}/kustomization.yaml"
|
dest: "{{ capi_clustermanifest.path }}/kustomization.yaml"
|
||||||
vars:
|
vars:
|
||||||
_template:
|
_template:
|
||||||
|
@ -4,34 +4,6 @@ resources:
|
|||||||
- cluster-template.yaml
|
- cluster-template.yaml
|
||||||
|
|
||||||
patches:
|
patches:
|
||||||
- patch: |-
|
|
||||||
apiVersion: v1
|
|
||||||
kind: Secret
|
|
||||||
metadata:
|
|
||||||
name: csi-vsphere-config
|
|
||||||
namespace: '${NAMESPACE}'
|
|
||||||
stringData:
|
|
||||||
data: |
|
|
||||||
apiVersion: v1
|
|
||||||
kind: Secret
|
|
||||||
metadata:
|
|
||||||
name: csi-vsphere-config
|
|
||||||
namespace: kube-system
|
|
||||||
stringData:
|
|
||||||
csi-vsphere.conf: |+
|
|
||||||
[Global]
|
|
||||||
insecure-flag = true
|
|
||||||
thumbprint = "${VSPHERE_TLS_THUMBPRINT}"
|
|
||||||
cluster-id = "${NAMESPACE}/${CLUSTER_NAME}"
|
|
||||||
|
|
||||||
[VirtualCenter "${VSPHERE_SERVER}"]
|
|
||||||
user = "${VSPHERE_USERNAME}"
|
|
||||||
password = "${VSPHERE_PASSWORD}"
|
|
||||||
datacenters = "${VSPHERE_DATACENTER}"
|
|
||||||
|
|
||||||
[Network]
|
|
||||||
public-network = "${VSPHERE_NETWORK}"
|
|
||||||
type: Opaque
|
|
||||||
- patch: |-
|
- patch: |-
|
||||||
apiVersion: controlplane.cluster.x-k8s.io/v1beta1
|
apiVersion: controlplane.cluster.x-k8s.io/v1beta1
|
||||||
kind: KubeadmControlPlane
|
kind: KubeadmControlPlane
|
||||||
@ -95,6 +67,7 @@ patches:
|
|||||||
spec:
|
spec:
|
||||||
template:
|
template:
|
||||||
spec:
|
spec:
|
||||||
|
diskGiB: 60
|
||||||
network:
|
network:
|
||||||
devices:
|
devices:
|
||||||
- dhcp4: false
|
- dhcp4: false
|
||||||
@ -114,6 +87,7 @@ patches:
|
|||||||
spec:
|
spec:
|
||||||
template:
|
template:
|
||||||
spec:
|
spec:
|
||||||
|
diskGiB: 60
|
||||||
network:
|
network:
|
||||||
devices:
|
devices:
|
||||||
- dhcp4: false
|
- dhcp4: false
|
||||||
@ -125,6 +99,25 @@ patches:
|
|||||||
- {{ _template.network.dnsserver }}
|
- {{ _template.network.dnsserver }}
|
||||||
networkName: '${VSPHERE_NETWORK}'
|
networkName: '${VSPHERE_NETWORK}'
|
||||||
|
|
||||||
|
- target:
|
||||||
|
group: addons.cluster.x-k8s.io
|
||||||
|
version: v1beta1
|
||||||
|
kind: ClusterResourceSet
|
||||||
|
name: \${CLUSTER_NAME}-crs-0
|
||||||
|
patch: |-
|
||||||
|
- op: replace
|
||||||
|
path: /spec/resources
|
||||||
|
value:
|
||||||
|
- kind: Secret
|
||||||
|
name: cloud-controller-manager
|
||||||
|
- kind: Secret
|
||||||
|
name: cloud-provider-vsphere-credentials
|
||||||
|
- kind: ConfigMap
|
||||||
|
name: cpi-manifests
|
||||||
|
- op: add
|
||||||
|
path: /spec/strategy
|
||||||
|
value: Reconcile
|
||||||
|
|
||||||
- target:
|
- target:
|
||||||
group: controlplane.cluster.x-k8s.io
|
group: controlplane.cluster.x-k8s.io
|
||||||
version: v1beta1
|
version: v1beta1
|
||||||
@ -198,6 +191,8 @@ patches:
|
|||||||
- op: replace
|
- op: replace
|
||||||
path: /metadata/name
|
path: /metadata/name
|
||||||
value: ${CLUSTER_NAME}-master
|
value: ${CLUSTER_NAME}-master
|
||||||
|
- op: remove
|
||||||
|
path: /spec/template/spec/thumbprint
|
||||||
- target:
|
- target:
|
||||||
group: controlplane.cluster.x-k8s.io
|
group: controlplane.cluster.x-k8s.io
|
||||||
version: v1beta1
|
version: v1beta1
|
||||||
@ -237,6 +232,8 @@ patches:
|
|||||||
- op: replace
|
- op: replace
|
||||||
path: /spec/template/spec/memoryMiB
|
path: /spec/template/spec/memoryMiB
|
||||||
value: {{ _template.nodesize.memory }}
|
value: {{ _template.nodesize.memory }}
|
||||||
|
- op: remove
|
||||||
|
path: /spec/template/spec/thumbprint
|
||||||
- target:
|
- target:
|
||||||
group: cluster.x-k8s.io
|
group: cluster.x-k8s.io
|
||||||
version: v1beta1
|
version: v1beta1
|
||||||
@ -258,3 +255,12 @@ patches:
|
|||||||
- op: replace
|
- op: replace
|
||||||
path: /metadata/name
|
path: /metadata/name
|
||||||
value: ${CLUSTER_NAME}-worker
|
value: ${CLUSTER_NAME}-worker
|
||||||
|
|
||||||
|
- target:
|
||||||
|
group: infrastructure.cluster.x-k8s.io
|
||||||
|
version: v1beta1
|
||||||
|
kind: VSphereCluster
|
||||||
|
name: .*
|
||||||
|
patch: |-
|
||||||
|
- op: remove
|
||||||
|
path: /spec/thumbprint
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
- attribute: cluster
|
- attribute: cluster
|
||||||
moref: >-
|
moref: >-
|
||||||
$(govc object.collect -json VirtualMachine:{{ moref_id }} | \
|
$(govc object.collect -json VirtualMachine:{{ moref_id }} | \
|
||||||
jq -r '.[] | select(.Name == "runtime").Val.Host | .Type + ":" + .Value')
|
jq -r '.[] | select(.name == "runtime").val.host | .type + ":" + .value')
|
||||||
part: (NF-1)
|
part: (NF-1)
|
||||||
- attribute: datacenter
|
- attribute: datacenter
|
||||||
moref: VirtualMachine:{{ moref_id }}
|
moref: VirtualMachine:{{ moref_id }}
|
||||||
@ -19,27 +19,27 @@
|
|||||||
- attribute: datastore
|
- attribute: datastore
|
||||||
moref: >-
|
moref: >-
|
||||||
$(govc object.collect -json VirtualMachine:{{ moref_id }} | \
|
$(govc object.collect -json VirtualMachine:{{ moref_id }} | \
|
||||||
jq -r '.[] | select(.Name == "datastore").Val.ManagedObjectReference | .[].Type + ":" + .[].Value')
|
jq -r '.[] | select(.name == "datastore").val._value | .[].type + ":" + .[].value')
|
||||||
part: NF
|
part: NF
|
||||||
- attribute: folder
|
- attribute: folder
|
||||||
moref: >-
|
moref: >-
|
||||||
$(govc object.collect -json VirtualMachine:{{ moref_id }} | \
|
$(govc object.collect -json VirtualMachine:{{ moref_id }} | \
|
||||||
jq -r '.[] | select(.Name == "parent").Val | .Type + ":" + .Value')
|
jq -r '.[] | select(.name == "parent").val | .type + ":" + .value')
|
||||||
part: 0
|
part: 0
|
||||||
# - attribute: host
|
# - attribute: host
|
||||||
# moref: >-
|
# moref: >-
|
||||||
# $(govc object.collect -json VirtualMachine:{{ moref_id }} | \
|
# $(govc object.collect -json VirtualMachine:{{ moref_id }} | \
|
||||||
# jq -r '.[] | select(.Name == "runtime").Val.Host | .Type + ":" + .Value')
|
# jq -r '.[] | select(.name == "runtime").val.host | .type + ":" + .value')
|
||||||
# part: NF
|
# part: NF
|
||||||
- attribute: network
|
- attribute: network
|
||||||
moref: >-
|
moref: >-
|
||||||
$(govc object.collect -json VirtualMachine:{{ moref_id }} | \
|
$(govc object.collect -json VirtualMachine:{{ moref_id }} | \
|
||||||
jq -r '.[] | select(.Name == "network").Val.ManagedObjectReference | .[].Type + ":" + .[].Value')
|
jq -r '.[] | select(.name == "network").val._value | .[].type + ":" + .[].value')
|
||||||
part: NF
|
part: NF
|
||||||
- attribute: resourcepool
|
- attribute: resourcepool
|
||||||
moref: >-
|
moref: >-
|
||||||
$(govc object.collect -json VirtualMachine:{{ moref_id }} | \
|
$(govc object.collect -json VirtualMachine:{{ moref_id }} | \
|
||||||
jq -r '.[] | select(.Name == "resourcePool").Val | .Type + ":" + .Value')
|
jq -r '.[] | select(.name == "resourcePool").val | .type + ":" + .value')
|
||||||
part: 0
|
part: 0
|
||||||
loop_control:
|
loop_control:
|
||||||
label: "{{ item.attribute }}"
|
label: "{{ item.attribute }}"
|
@ -1,57 +0,0 @@
|
|||||||
- name: Gather hypervisor details
|
|
||||||
ansible.builtin.shell:
|
|
||||||
cmd: govc ls -L {{ item.moref }} | awk -F/ '{print ${{ item.part }}}'
|
|
||||||
environment:
|
|
||||||
GOVC_INSECURE: '1'
|
|
||||||
GOVC_URL: "{{ vapp['hv.fqdn'] }}"
|
|
||||||
GOVC_USERNAME: "{{ vapp['hv.username'] }}"
|
|
||||||
GOVC_PASSWORD: "{{ vapp['hv.password'] }}"
|
|
||||||
register: govc_inventory
|
|
||||||
loop:
|
|
||||||
- attribute: cluster
|
|
||||||
moref: >-
|
|
||||||
$(govc object.collect -json VirtualMachine:{{ moref_id }} | \
|
|
||||||
jq -r '.[] | select(.Name == "runtime").Val.Host | .Type + ":" + .Value')
|
|
||||||
part: (NF-1)
|
|
||||||
- attribute: datacenter
|
|
||||||
moref: VirtualMachine:{{ moref_id }}
|
|
||||||
part: 2
|
|
||||||
- attribute: datastore
|
|
||||||
moref: >-
|
|
||||||
$(govc object.collect -json VirtualMachine:{{ moref_id }} | \
|
|
||||||
jq -r '.[] | select(.Name == "datastore").Val.ManagedObjectReference | .[].Type + ":" + .[].Value')
|
|
||||||
part: NF
|
|
||||||
- attribute: folder
|
|
||||||
moref: >-
|
|
||||||
$(govc object.collect -json VirtualMachine:{{ moref_id }} | \
|
|
||||||
jq -r '.[] | select(.Name == "parent").Val | .Type + ":" + .Value')
|
|
||||||
part: 0
|
|
||||||
# - attribute: host
|
|
||||||
# moref: >-
|
|
||||||
# $(govc object.collect -json VirtualMachine:{{ moref_id }} | \
|
|
||||||
# jq -r '.[] | select(.Name == "runtime").Val.Host | .Type + ":" + .Value')
|
|
||||||
# part: NF
|
|
||||||
- attribute: network
|
|
||||||
moref: >-
|
|
||||||
$(govc object.collect -json VirtualMachine:{{ moref_id }} | \
|
|
||||||
jq -r '.[] | select(.Name == "network").Val.ManagedObjectReference | .[].Type + ":" + .[].Value')
|
|
||||||
part: NF
|
|
||||||
- attribute: resourcepool
|
|
||||||
moref: >-
|
|
||||||
$(govc object.collect -json VirtualMachine:{{ moref_id }} | \
|
|
||||||
jq -r '.[] | select(.Name == "resourcePool").Val | .Type + ":" + .Value')
|
|
||||||
part: 0
|
|
||||||
loop_control:
|
|
||||||
label: "{{ item.attribute }}"
|
|
||||||
|
|
||||||
- name: Retrieve hypervisor TLS thumbprint
|
|
||||||
ansible.builtin.shell:
|
|
||||||
cmd: openssl s_client -connect {{ vapp['hv.fqdn'] }}:443 < /dev/null 2>/dev/null | openssl x509 -fingerprint -noout -in /dev/stdin | awk -F'=' '{print $2}'
|
|
||||||
register: tls_thumbprint
|
|
||||||
|
|
||||||
- name: Store hypervisor details in dictionary
|
|
||||||
ansible.builtin.set_fact:
|
|
||||||
vcenter_info: "{{ vcenter_info | default({}) | combine({ item.item.attribute : item.stdout }) }}"
|
|
||||||
loop: "{{ govc_inventory.results }}"
|
|
||||||
loop_control:
|
|
||||||
label: "{{ item.item.attribute }}"
|
|
@ -58,6 +58,7 @@ components:
|
|||||||
|
|
||||||
argo-cd:
|
argo-cd:
|
||||||
helm:
|
helm:
|
||||||
|
# Must match the version referenced at `dependencies.static_binaries[.filename==argo].url`
|
||||||
version: 6.7.7 # (=Argo CD v2.10.5)
|
version: 6.7.7 # (=Argo CD v2.10.5)
|
||||||
chart: argo/argo-cd
|
chart: argo/argo-cd
|
||||||
parse_logic: helm template . | yq --no-doc eval '.. | .image? | select(.)' | sort -u | awk '!/ /'
|
parse_logic: helm template . | yq --no-doc eval '.. | .image? | select(.)' | sort -u | awk '!/ /'
|
||||||
@ -85,11 +86,19 @@ components:
|
|||||||
chart: argo/argo-workflows
|
chart: argo/argo-workflows
|
||||||
parse_logic: helm template . | yq --no-doc eval '.. | .image? | select(.)' | sort -u | awk '!/ /'
|
parse_logic: helm template . | yq --no-doc eval '.. | .image? | select(.)' | sort -u | awk '!/ /'
|
||||||
chart_values: !unsafe |
|
chart_values: !unsafe |
|
||||||
|
# workflow:
|
||||||
|
# serviceAccount:
|
||||||
|
# create: true
|
||||||
|
# name: "argo-workflows"
|
||||||
|
# rbac:
|
||||||
|
# create: true
|
||||||
controller:
|
controller:
|
||||||
workflowNamespaces:
|
workflowNamespaces:
|
||||||
- default
|
- default
|
||||||
- firstboot
|
- firstboot
|
||||||
server:
|
server:
|
||||||
|
authModes:
|
||||||
|
- server
|
||||||
ingress:
|
ingress:
|
||||||
enabled: true
|
enabled: true
|
||||||
hosts:
|
hosts:
|
||||||
@ -122,8 +131,8 @@ components:
|
|||||||
calico: v3.27.3
|
calico: v3.27.3
|
||||||
k8s: v1.30.1
|
k8s: v1.30.1
|
||||||
node_template:
|
node_template:
|
||||||
# url: https://{{ repo_username }}:{{ repo_password }}@sn.itch.fyi/Repository/rel/ubuntu-2204-kube-v1.27.1.ova
|
# Not used anymore; should be uploaded to hypervisor manually!
|
||||||
url: https://github.com/kubernetes-sigs/cluster-api-provider-vsphere/releases/download/templates%2Fv1.30.0/ubuntu-2204-kube-v1.30.0.ova
|
# https://github.com/kubernetes-sigs/cluster-api-provider-vsphere/releases/download/templates%2Fv1.30.0/
|
||||||
|
|
||||||
dex:
|
dex:
|
||||||
helm:
|
helm:
|
||||||
@ -355,6 +364,8 @@ dependencies:
|
|||||||
- registry.k8s.io/sig-storage/livenessprobe:v2.10.0
|
- registry.k8s.io/sig-storage/livenessprobe:v2.10.0
|
||||||
|
|
||||||
static_binaries:
|
static_binaries:
|
||||||
|
- filename: argo
|
||||||
|
url: https://github.com/argoproj/argo-workflows/releases/download/v3.5.7/argo-linux-amd64.gz
|
||||||
- filename: clusterctl
|
- filename: clusterctl
|
||||||
url: https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.6.3/clusterctl-linux-amd64
|
url: https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.6.3/clusterctl-linux-amd64
|
||||||
- filename: govc
|
- filename: govc
|
||||||
|
78
deployment/playbook.yml
Normal file
78
deployment/playbook.yml
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
- hosts: localhost
|
||||||
|
vars_files:
|
||||||
|
- vars/ova.bootstrap.yaml
|
||||||
|
- vars/hv.vcenter.yaml
|
||||||
|
- vars/pb.secrets.yaml
|
||||||
|
tasks:
|
||||||
|
|
||||||
|
- name: Retrieve target folder details
|
||||||
|
community.vmware.vmware_vm_info:
|
||||||
|
hostname: "{{ hv.hostname }}"
|
||||||
|
username: "{{ hv.username }}"
|
||||||
|
password: "{{ secrets.hv.password }}"
|
||||||
|
folder: "{{ hv.folder }}"
|
||||||
|
validate_certs: false
|
||||||
|
register: vm_info
|
||||||
|
|
||||||
|
- name: User prompt
|
||||||
|
ansible.builtin.pause:
|
||||||
|
prompt: Virtual machine '{{ appliance.id }}' already exists. Delete to continue [yes] or abort [no]?"
|
||||||
|
register: prompt
|
||||||
|
until:
|
||||||
|
- prompt.user_input in ['yes', 'no']
|
||||||
|
delay: 0
|
||||||
|
when: (vm_info | selectattr('guest_name', 'equalto', appliance.id) | length) > 0
|
||||||
|
|
||||||
|
- name: Destroy existing VM
|
||||||
|
community.vmware.vmware_guest:
|
||||||
|
hostname: "{{ hv.hostname }}"
|
||||||
|
username: "{{ hv.username }}"
|
||||||
|
password: "{{ secrets.hv.password }}"
|
||||||
|
folder: "{{ hv.folder }}"
|
||||||
|
name: appliance.id
|
||||||
|
state: absent
|
||||||
|
when:
|
||||||
|
- (vm_info | selectattr('guest_name', 'equalto', appliance.id) | length) > 0
|
||||||
|
- (prompt.user_input | bool) == true
|
||||||
|
|
||||||
|
- name: Deploy VM from OVA-template
|
||||||
|
community.vmware.vmware_deploy_ovf:
|
||||||
|
hostname: "{{ hv.hostname }}"
|
||||||
|
username: "{{ hv.username }}"
|
||||||
|
password: "{{ secrets.hv.password }}"
|
||||||
|
validate_certs: false
|
||||||
|
datacenter: "{{ hv.datacenter }}"
|
||||||
|
folder: "{{ hv.folder }}"
|
||||||
|
cluster: "{{ hv.cluster }}"
|
||||||
|
name: airgapped-k8s-meta1
|
||||||
|
datastore: "{{ hv.datastore }}"
|
||||||
|
disk_provisioning: thin
|
||||||
|
networks:
|
||||||
|
"LAN": "{{ hv.network }}"
|
||||||
|
power_on: yes
|
||||||
|
ovf: "{{ appliance.path }}/{{ appliance.filename }}"
|
||||||
|
deployment_option: cp1w1ws0
|
||||||
|
properties:
|
||||||
|
metacluster.fqdn: k8s.lab
|
||||||
|
metacluster.vip: 192.168.154.125
|
||||||
|
metacluster.token: "{{ secrets.appliance.installtoken }}"
|
||||||
|
# guestinfo.hostname: _default
|
||||||
|
metacluster.password: "{{ secrets.appliance.password }}"
|
||||||
|
guestinfo.ipaddress: 192.168.154.126
|
||||||
|
guestinfo.prefixlength: '24'
|
||||||
|
guestinfo.dnsserver: 192.168.154.225
|
||||||
|
guestinfo.gateway: 192.168.154.1
|
||||||
|
# workloadcluster.name: _default
|
||||||
|
workloadcluster.vip: 192.168.154.130
|
||||||
|
ippool.startip: 192.168.154.135
|
||||||
|
ippool.endip: 192.168.154.140
|
||||||
|
workloadcluster.nodetemplate: ubuntu-2204-kube-v1.30.0
|
||||||
|
workloadcluster.nodesize: small
|
||||||
|
# workloadcluster.additionaldisk: '75'
|
||||||
|
guestinfo.rootsshkey: ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAiRc7Og+cRJGFwdUzgpX9YqvVenTk54N4kqM7emEfYHdsJLMjKQyxr8hklHmsam5dzxx3itFzc6SLf/ldJJ2JZuzE5FiCqUXXv4UFwN6HF5xqn7PTLicvWZH93H4m1gOlD5Dfzi4Es34v5zRBwbMScOgekk/LweTgl35jGKDgMP5DjGTqkPf7Ndh9+iuQrz99JEr8egl3bj+jIlKjScfaQbbnu3AJIRwZwTKgw0AOkLliQdEPNLvG5/ZImxJG4oHV9/uNkfdJObLjT1plR1HbVNskV5fuRNE/vnUiWl9jAJ1RT83GOqV0sQ+Q7p214fkgqb3JPvci/s0Bb7RA85hBEQ== bessems.eu
|
||||||
|
hv.fqdn: "{{ hv.hostname }}"
|
||||||
|
hv.username: "{{ hv.username }}"
|
||||||
|
hv.password: "{{ secrets.hv.password }}"
|
||||||
|
ldap.fqdn: _unused
|
||||||
|
ldap.dn: _unused
|
||||||
|
ldap.password: _unused
|
5
deployment/requirements.yaml
Normal file
5
deployment/requirements.yaml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
collections:
|
||||||
|
# - ansible.posix
|
||||||
|
# - ansible.utils
|
||||||
|
# - community.general
|
||||||
|
- community.vmware
|
Reference in New Issue
Block a user