Skip to content

Commit

Permalink
ignore lint error (#57)
Browse files Browse the repository at this point in the history
To ignore the following:

```
WARNING  Listing 2 violation(s) that are fatal
var-naming[no-role-prefix]: Variables names from within roles should use ethereum_inventory_web_ as a prefix. (vars: eth_inventory_web_container_env)
playbook.yaml:85 Task/Handler: Refresh inventory web

var-naming[no-role-prefix]: Variables names from within roles should use ethereum_inventory_web_ as a prefix. (vars: eth_inventory_web_container_networks)
playbook.yaml:85 Task/Handler: Refresh inventory web
```

Signed-off-by: Rafael Matias <[email protected]>
  • Loading branch information
skylenet authored Oct 14, 2024
1 parent 3fb569a commit c4d3449
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ansible/playbook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@
delegate_to: bootnode-1
run_once: true
vars:
eth_inventory_web_container_networks: "{{ docker_networks_shared }}"
eth_inventory_web_container_env:
eth_inventory_web_container_networks: "{{ docker_networks_shared }}" # noqa var-naming[no-role-prefix]
eth_inventory_web_container_env: # noqa var-naming[no-role-prefix]
VIRTUAL_HOST: "bootnode-1.{{ network_subdomain }}"
VIRTUAL_PORT: "80"
VIRTUAL_PATH: "/meta/api"
Expand Down

0 comments on commit c4d3449

Please sign in to comment.