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 inventory-sample and adapt README for multiple nodes #250

Merged
merged 1 commit into from
Nov 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ k3s_cluster:
children:
server:
hosts:
192.16.35.11
192.16.35.11:
agent:
hosts:
192.16.35.12
192.16.35.13
192.16.35.12:
192.16.35.13:
```

If needed, you can also edit `vars` section at the bottom to match your environment.
Expand Down
6 changes: 3 additions & 3 deletions inventory-sample.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
children:
server:
hosts:
192.16.35.11
192.16.35.11:
agent:
hosts:
192.16.35.12
192.16.35.13
192.16.35.12:
192.16.35.13:

# Required Vars
vars:
Expand All @@ -19,8 +19,8 @@
extra_server_args: ""
extra_agent_args: ""

# Optional vars

Check warning on line 22 in inventory-sample.yml

View workflow job for this annotation

GitHub Actions / Lint

yaml[comments-indentation]

Comment not indented like content

Check warning on line 22 in inventory-sample.yml

View workflow job for this annotation

GitHub Actions / Lint

22:3 [comments-indentation] comment not indented like content
# api_port: 6443

Check warning on line 23 in inventory-sample.yml

View workflow job for this annotation

GitHub Actions / Lint

yaml[comments-indentation]

Comment not indented like content

Check warning on line 23 in inventory-sample.yml

View workflow job for this annotation

GitHub Actions / Lint

23:5 [comments-indentation] comment not indented like content
# k3s_server_location: /var/lib/rancher/k3s
# systemd_dir: /etc/systemd/system
# extra_service_envs: [ 'ENV_VAR1=VALUE1', 'ENV_VAR2=VALUE2' ]
Expand Down
Loading