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

Update the documentation in nginxplus.yml #5650

Merged
merged 1 commit into from
Dec 20, 2024
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
4 changes: 2 additions & 2 deletions playbooks/nginxplus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# you MUST run this playbook on a single host with '--limit' for example `ansible-playbook -v --limit lib-adc2.princeton.edu playbooks/nginxplus.yml`
# to update the second load-balancer, switch which adc# host is currently active, then run the playbook on the second (formerly active, now inactive) host
# to update configuration for existing sites, run with '-t update_conf' for example `ansible-playbook -v --limit lib-adc2.princeton.edu playbooks/nginxplus.yml -t update_conf`
# if you want to remove obsolete config files, you must pass '-e nginx_cleanup_config=true'
# note that this will delete the entire config directory
# to remove obsolete config files, you cannot use the update_conf tag AND you must pass '-e nginx_cleanup_config=true'
# note that this will delete the entire config directory, this is why you must run the full playbook and not use tags
# To find the active load-balancer ssh onto a machine and run `ip a |grep 146` the active one will display `inet 128.112.203.146/32 scope global eno1`

- name: update loadbalancer configuration
Expand Down
2 changes: 1 addition & 1 deletion roles/nginxplus/tasks/conf/cleanup-config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
- name: "Setup: Remove NGINX configuration files"
file:
ansible.builtin.file:
path: "{{ item }}"
state: absent
with_items:
Expand Down
Loading