forked from vitabaks/autobase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update_pgcluster.yml
277 lines (249 loc) · 8.73 KB
/
update_pgcluster.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
---
- name: update_pgcluster.yml | Update PostgreSQL HA Cluster (based on "Patroni")
hosts: postgres_cluster
gather_facts: true
become: true
become_method: sudo
any_errors_fatal: true
pre_tasks:
- name: "Set variable: ansible_python_interpreter"
ansible.builtin.set_fact:
ansible_python_interpreter: "/usr/bin/env python3"
when: "'python3' not in (ansible_python_interpreter | default(''))"
tags: always
- name: Include main variables
ansible.builtin.include_vars: "vars/main.yml"
tags: always
tasks:
- name: "[Prepare] Get Patroni Cluster Leader Node"
ansible.builtin.uri:
url: http://{{ inventory_hostname }}:{{ patroni_restapi_port }}/leader
status_code: 200
register: patroni_leader_result
changed_when: false
failed_when: false
environment:
no_proxy: "{{ inventory_hostname }}"
tags: always
- name: '[Prepare] Add host to group "primary" (in-memory inventory)'
ansible.builtin.add_host:
name: "{{ item }}"
groups: primary
when: hostvars[item]['patroni_leader_result']['status'] == 200
loop: "{{ groups['postgres_cluster'] }}"
changed_when: false
tags: always
- name: '[Prepare] Add hosts to group "secondary" (in-memory inventory)'
ansible.builtin.add_host:
name: "{{ item }}"
groups: secondary
when: hostvars[item]['patroni_leader_result']['status'] != 200
loop: "{{ groups['postgres_cluster'] }}"
changed_when: false
tags: always
- name: "Print Patroni Cluster info"
ansible.builtin.debug:
msg:
- "Cluster Name: {{ patroni_cluster_name }}"
- "Cluster Leader: {{ ansible_hostname }}"
when: inventory_hostname in groups['primary']
tags: always
- name: "(1/4) PRE-UPDATE: Perform pre-update tasks"
hosts: "primary:secondary"
gather_facts: true
become: true
become_user: postgres
any_errors_fatal: true
pre_tasks:
- name: Include role variables
ansible.builtin.include_vars: "roles/update/vars/main.yml"
- name: Include main variables
ansible.builtin.include_vars: "vars/main.yml"
- name: Include OS-specific variables
ansible.builtin.include_vars: "vars/{{ ansible_os_family }}.yml"
tasks:
- name: Running Pre-Checks
ansible.builtin.include_role:
name: update
tasks_from: pre_checks
# This task updates the pgBackRest package on the backup server (Dedicated Repository Host).
# It runs only if the 'pgbackrest' group is defined in the inventory and the update target is set to 'system'.
- name: Update pgBackRest package (Dedicated Repository Host)
ansible.builtin.include_role:
name: update
tasks_from: pgbackrest_host
when: groups['pgbackrest'] | default([]) | length > 0 and target | lower == 'system'
tags:
- update
- pre-checks
- name: "(2/4) UPDATE: Secondary"
hosts: secondary
serial: 1 # update replicas one by one
gather_facts: true
become: true
become_method: sudo
any_errors_fatal: true
environment: "{{ proxy_env | default({}) }}"
pre_tasks:
- name: Include role variables
ansible.builtin.include_vars: "roles/update/vars/main.yml"
- name: Include main variables
ansible.builtin.include_vars: "vars/main.yml"
- name: Include OS-specific variables
ansible.builtin.include_vars: "vars/{{ ansible_os_family }}.yml"
tasks:
- name: Stop read-only traffic
ansible.builtin.include_role:
name: update
tasks_from: stop_traffic
- name: Stop Services
ansible.builtin.include_role:
name: update
tasks_from: stop_services
- name: Update PostgreSQL
ansible.builtin.include_role:
name: update
tasks_from: postgres
when: target | lower == 'postgres' or target | lower == 'system'
- name: Update Patroni
ansible.builtin.include_role:
name: update
tasks_from: patroni
when: target | lower == 'patroni' or target | lower == 'system'
- name: Update all system packages
ansible.builtin.include_role:
name: update
tasks_from: system
when: target | lower == 'system'
- name: Start Services
ansible.builtin.include_role:
name: update
tasks_from: start_services
- name: Start read-only traffic
ansible.builtin.include_role:
name: update
tasks_from: start_traffic
tags:
- update
- update-secondary
- name: "(3/4) UPDATE: Primary"
hosts: primary
gather_facts: true
become: true
become_method: sudo
any_errors_fatal: true
environment: "{{ proxy_env | default({}) }}"
pre_tasks:
- name: Include role variables
ansible.builtin.include_vars: "roles/update/vars/main.yml"
- name: Include main variables
ansible.builtin.include_vars: "vars/main.yml"
- name: Include OS-specific variables
ansible.builtin.include_vars: "vars/{{ ansible_os_family }}.yml"
tasks:
- name: "Switchover Patroni leader role"
ansible.builtin.include_role:
name: update
tasks_from: switchover
- name: Stop read-only traffic
ansible.builtin.include_role:
name: update
tasks_from: stop_traffic
- name: Stop Services
ansible.builtin.include_role:
name: update
tasks_from: stop_services
- name: Update PostgreSQL
ansible.builtin.include_role:
name: update
tasks_from: postgres
when: target | lower == 'postgres' or target | lower == 'system'
- name: Update Patroni
ansible.builtin.include_role:
name: update
tasks_from: patroni
when: target | lower == 'patroni' or target | lower == 'system'
- name: Update all system packages
ansible.builtin.include_role:
name: update
tasks_from: system
when: target | lower == 'system'
- name: Start Services
ansible.builtin.include_role:
name: update
tasks_from: start_services
- name: Start read-only traffic
ansible.builtin.include_role:
name: update
tasks_from: start_traffic
tags:
- update
- update-primary
- name: "(4/4) POST-UPDATE: Update extensions"
hosts: postgres_cluster
gather_facts: true
become: true
become_user: postgres
any_errors_fatal: true
pre_tasks:
- name: Include role variables
ansible.builtin.include_vars: "roles/update/vars/main.yml"
- name: Include main variables
ansible.builtin.include_vars: "vars/main.yml"
- name: Include OS-specific variables
ansible.builtin.include_vars: "vars/{{ ansible_os_family }}.yml"
tasks:
- name: Update extensions
ansible.builtin.include_role:
name: update
tasks_from: extensions
when: update_extensions | bool
# finish (info)
- name: Check for any update failure
run_once: true # noqa run-once
ansible.builtin.set_fact:
any_update_failed: "{{ any_update_failed | default(false) or
hostvars[item].update_postgres_failed | default(false) or
hostvars[item].update_patroni_failed | default(false) or
hostvars[item].update_system_failed | default(false) }}"
loop: "{{ groups['postgres_cluster'] }}"
- name: Check the Patroni cluster state
run_once: true # noqa run-once
become: true
become_user: postgres
ansible.builtin.command: patronictl -c /etc/patroni/patroni.yml list
register: patronictl_result
changed_when: false
environment:
PATH: "{{ ansible_env.PATH }}:/usr/bin:/usr/local/bin"
- name: Check the current PostgreSQL version
run_once: true # noqa run-once
ansible.builtin.command: >-
{{ postgresql_bin_dir }}/psql -p {{ postgresql_port }} -U {{ patroni_superuser_username }} -d postgres -tAXc
"select current_setting('server_version')"
register: postgres_version
changed_when: false
- name: List the Patroni cluster members
run_once: true # noqa run-once
ansible.builtin.debug:
msg: "{{ patronictl_result.stdout_lines }}"
when: patronictl_result.stdout_lines is defined
# if there are no update errors
- name: Update completed
run_once: true # noqa run-once
ansible.builtin.debug:
msg:
- "PostgreSQL HA cluster update completed."
- "Current version: {{ postgres_version.stdout }}"
when: not any_update_failed
# if there were errors during the update
- name: Update completed with error
run_once: true # noqa run-once
ansible.builtin.debug:
msg:
- "Update of PostgreSQL HA cluster completed with errors. Check the Ansible log."
- "Current version: {{ postgres_version.stdout }}"
when: any_update_failed
tags:
- update
- update-extensions