#Cluster creation failure

1 messages · Page 1 of 1 (latest)

analog lotus
#

I'm getting below error when trying to build a net new cluster using below playbook.

netapp.ontap 22.3.0
ONTAP: 9.8P11

  • hosts: localhost
    gather_facts: false
    collections:

    • netapp.ontap

    vars:
    nodelogin: &nodelogin
    hostname: "{{ node1_mgmt_ip }}"
    username: "{{ username }}"
    password: "{{ password }}"
    https: true
    validate_certs: false
    clusterlogin: &clusterlogin
    hostname: "{{ cluster_mgmt_ip }}"
    username: "{{ username }}"
    password: "{{ password }}"
    https: true
    validate_certs: false
    vars_prompt:

    • name: "password"
      prompt: "Password for {{ username }}"
      private: yes

    name: "Build net new cluster: {{ cluster }}"
    tasks:

    • name: "Create net new cluster: {{ cluster }}"
      na_ontap_cluster:
      state: present
      cluster_name: "{{ cluster }}"
      timezone: "{{ timezone }}"
      use_rest: always
      <<: *nodelogin

Error:
fatal: [localhost]: FAILED! => changed=false
invocation:
module_args: HIDDEN DUE TO FAILURE
msg: Failure when processing no_log parameters. Module invocation will be hidden. dictionary requested, could not parse JSON or key=value

radiant forge
analog lotus
#

Ok thanks Mohan