forked from vitabaks/postgresql_cluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update_pgcluster.yml
237 lines (211 loc) · 6.54 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
---
- name: Update PostgreSQL HA Cluster (based on "Patroni" and "{{ dcs_type }}")
hosts: postgres_cluster
gather_facts: true
become: true
become_method: sudo
any_errors_fatal: true
vars_files:
- vars/main.yml
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
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-Checks"
hosts: "primary:secondary"
gather_facts: false
become: true
become_user: postgres
any_errors_fatal: true
vars:
max_replication_lag_bytes: 10485760 # 10 MiB
max_transaction_sec: 15 # seconds
tasks:
- name: Running Pre-Checks
ansible.builtin.include_role:
name: update
tasks_from: pre_checks
tags:
- update
- pre-checks
- name: "(2/4) UPDATE: Secondary"
hosts: secondary
serial: 1 # update replicas one by one
gather_facts: false
become: true
become_method: sudo
any_errors_fatal: true
environment: "{{ proxy_env | default({}) }}"
vars_files:
- vars/main.yml
vars:
target: postgres # or 'patroni', 'system'
pre_tasks:
- name: Include OS-specific variables
ansible.builtin.include_vars: "vars/{{ ansible_os_family }}.yml"
tags: always
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'
- name: Update Patroni
ansible.builtin.include_role:
name: update
tasks_from: patroni
when: target | lower == 'patroni' or
(target | lower == 'system' and patroni_installation_method == "pip")
- name: Update all system packages (includes PostgreSQL and Patroni)
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: false
become: true
become_method: sudo
any_errors_fatal: true
environment: "{{ proxy_env | default({}) }}"
vars_files:
- vars/main.yml
vars:
target: postgres # or 'patroni', 'system'
pre_tasks:
- name: Include OS-specific variables
ansible.builtin.include_vars: "vars/{{ ansible_os_family }}.yml"
tags: always
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'
- name: Update Patroni
ansible.builtin.include_role:
name: update
tasks_from: patroni
when: target | lower == 'patroni' or
(target | lower == 'system' and patroni_installation_method == "pip")
- name: Update all system packages (includes PostgreSQL and Patroni)
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: false
become: true
become_user: postgres
any_errors_fatal: true
vars_files:
- vars/main.yml
vars:
update_extensions: true # or 'false', to avoid updating extensions
tasks:
- name: Update extensions
ansible.builtin.include_role:
name: update
tasks_from: extensions
when: update_extensions | bool
# finish (info)
- 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: psql -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
- name: Update completed
run_once: true # noqa run-once
ansible.builtin.debug:
msg:
- "PostgreSQL HA cluster update completed."
- "Current version: {{ postgres_version.stdout }}"
when: postgres_version.stdout is defined
tags:
- update
- update-extensions