#On Ring "VifMgr" is offline

1 messages · Page 1 of 1 (latest)

fathom meadow
#

Hello All,

I have a single-node cluster I'm trying to run my playbook to create a lif interface and receive the following error:

fatal: [localhost]: FAILED! => {"changed": false, "msg": "Error creating interface nfs_lif01: calling: network/ip/interfaces: got {'message': 'Node \"-\" on ring \"VifMgr\" is offline. Check the health of the cluster using the \"cluster show\" command. For further assistance, contact technical support.', 'code': '393271'}."}

Here is some output from a few commands:

40-SINGLE-N1::*> cluster ring show
Node UnitName Epoch DB Epoch DB Trnxs Master Online


40-SINGLE-N1-01
vifmgr 1 1 253 40-SINGLE-N1-01
master

40-SINGLE-N1::*> cluster show
Node Health Eligibility Epsilon


40-SINGLE-N1-01 true true true

40-SINGLE-N1::*> cluster ring show -online offline
There are no entries matching your query.

40-SINGLE-N1::*> network interface show -fields failover-group , broadcast-domain
vserver lif failover-group broadcast-domain


40-SINGLE-N1 40-SINGLE-N1-01_mgmt Default Default
40-SINGLE-N1 cluster_mgmt Default Default
SVM-SN1 lif_SVM-SN1_198 Default Default

Everything looks good to me, but this darn playbook won't complete without the error mentioned.

I disabled the failover policy because maybe I assumed the playbook was expecting a failover policy but it's disabled with "failover_policy: disabled".

#

The message would be too long if I added the sample playbook section for creating the LIF.

#

Let me see if I can add it here, just the main snippet:
- name: Create Network LIF if it doesn't exist
netapp.ontap.na_ontap_interface:
state: present
interface_name: "{{ lif_name }}"
home_node: "{{ home_node }}"
home_port: "{{ home_port }}"
admin_status: up
failover_policy: disabled
service_policy: default-data-files
is_auto_revert: true
interface_type: ip
address: "{{ address }}"
netmask: "{{ netmask }}"
vserver: "{{ svmname }}"
hostname: "{{ netapp_host }}"
<<: *login
when: not lif_exists

lethal anvil
#

Node "-" sounds wrong. Are you sure the {{ home_node }} parameter is set correctly?

fathom meadow
#

Funny, I'm dumb - I just realize I had it as 40_SINGLE_N1-01 and it should be 40-SINGLE-N1-01. I guess this would be a good time to stop looking at these playbooks for the day 🥲 I can't believe I didn't catch that.