-
Hey folks.... I am standing up a new cluster but getting stuck on "task configure" I have checked the config.yaml very carefully but am not sure how to troubleshoot. File "/home/[redacted]/[redacted]/.venv/lib/python3.11/site-packages/yaml/parser.py", line 438, in parse_block_mapping_key Line 8 in my config is: Line 6 is: |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
Can you share your full My first guess is you have it malformed or incorrectly configured. |
Beta Was this translation helpful? Give feedback.
-
My apologies for my late response... I have attached the file. I am seeing a parsing error on the line below bootstrap_node_inventory - a block sequence may not be used as an implicit key map. |
Beta Was this translation helpful? Give feedback.
-
bootstrap_node_inventory: [1]
- name: "redacted"
address: "redacted"
controller: true
ssh_user: "redacted" is not valid YAML, it should look like this: bootstrap_node_inventory:
- name: "redacted"
address: "redacted"
controller: true
ssh_user: "redacted" |
Beta Was this translation helpful? Give feedback.
is not valid YAML, it should look like this: