Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix master taint implementation - linting problems #95

Merged
merged 9 commits into from
Sep 25, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixes typo
  • Loading branch information
ioagel committed Sep 19, 2022
commit e5e66eaa277ac8b1a819bf3c66adf461a71f25ed
2 changes: 1 addition & 1 deletion inventory/sample/group_vars/all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ k3s_token: "some-SUPER-DEDEUPER-secret-password"
# it for each of your hosts, though.
k3s_node_ip: '{{ ansible_facts[flannel_iface]["ipv4"]["address"] }}'

k3s_node_exists: "{{ 'true' if groups['nodes'] | length >= 1 else 'false' }}"
k3s_node_exists: "{{ 'true' if groups['node'] | length >= 1 else 'false' }}"

# these arguments are recommended for servers as well as agents:
extra_args: >-
Expand Down