5587c299ea
Add new IP addresses to inventory for the rebuild, but don't reactivate it in the haproxy pools yet. Note this switches the gitea testing to use a host called gitea99 so that it doesn't conflict with our changes of the production hosts. Change-Id: I9779e16cca423bcf514dd3a8d9f14e91d43f1ca3
14 lines
467 B
Django/Jinja
14 lines
467 B
Django/Jinja
haproxy_listeners:
|
|
- name: balance_git_http
|
|
bind:
|
|
- ":::80"
|
|
servers:
|
|
- name: "gitea99.opendev.org"
|
|
address: "{{ (hostvars['gitea99.opendev.org'] | default({})).get('nodepool', {}).get('public_ipv4', '') }}:3080"
|
|
- name: balance_git_https
|
|
bind:
|
|
- ":::443"
|
|
servers:
|
|
- name: "gitea99.opendev.org"
|
|
address: "{{ (hostvars['gitea99.opendev.org'] | default({})).get('nodepool', {}).get('public_ipv4', '') }}:3000"
|