Ansible: Vcenter Cluster Olusturmak

Ansible ile esxi cluster olsuturmak icin asagidaki playbooku kullanabilirsiniz.

 

---
- name: Create Cluster
  hosts: localhost
  connection: local
  gather_facts: no
  tasks:
    - name: Create Cluster
      community.vmware.vmware_cluster:
        validate_certs: False
        hostname: '{{ vcenter_hostname }}'
        username: '{{ vcenter_username }}'
        password: '{{ vcenter_password }}'
        datacenter: '{{ datacenter_name }}'
        cluster_name: '{{ cluster_name }}'

        enable_ha: false
        enable_drs: false
        enable_vsan: false
      delegate_to: localhost

      register: create_cluster
    - debug:
        msg: "{{ create_cluster }}"

Join the ConversationLeave a reply

Your email address will not be published. Required fields are marked *

Comment*

Name*

Website