-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from kevincoakley/15.0.0
15.0.0
- Loading branch information
Showing
15 changed files
with
176 additions
and
19 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
warn_list: | ||
- internal-error | ||
- role-name | ||
- fqcn-builtins | ||
- no-tabs | ||
skip_list: | ||
- yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
- name: Converge | ||
hosts: all | ||
become: true | ||
|
||
vars: | ||
- postgres_major_version: 13 | ||
- postgres_listen_addresses: "*" | ||
- postgres_client_auth: | ||
- type: host | ||
database: all | ||
user: all | ||
address: 0.0.0.0/0 | ||
method: md5 | ||
- type: local | ||
database: all | ||
user: all | ||
method: md5 | ||
|
||
roles: | ||
- role: ansible-role-postgres |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
- name: Converge | ||
hosts: all | ||
become: true | ||
|
||
vars: | ||
- postgres_major_version: 14 | ||
- postgres_listen_addresses: "*" | ||
- postgres_client_auth: | ||
- type: host | ||
database: all | ||
user: all | ||
address: 0.0.0.0/0 | ||
method: md5 | ||
- type: local | ||
database: all | ||
user: all | ||
method: md5 | ||
|
||
roles: | ||
- role: ansible-role-postgres |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
- name: Converge | ||
hosts: all | ||
become: true | ||
|
||
vars: | ||
- postgres_major_version: 15 | ||
- postgres_listen_addresses: "*" | ||
- postgres_client_auth: | ||
- type: host | ||
database: all | ||
user: all | ||
address: 0.0.0.0/0 | ||
method: md5 | ||
- type: local | ||
database: all | ||
user: all | ||
method: md5 | ||
|
||
roles: | ||
- role: ansible-role-postgres |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
- name: Verify | ||
hosts: all | ||
become: true | ||
|
||
tasks: | ||
- name: Test if the postgres 13 is running | ||
shell: psql -c "SELECT version();" | ||
args: | ||
executable: /bin/bash | ||
register: postgresql_version | ||
become: true | ||
become_user: postgres | ||
become_method: sudo | ||
changed_when: false | ||
failed_when: | ||
- '"PostgreSQL 13" not in postgresql_version.stdout' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
- name: Verify | ||
hosts: all | ||
become: true | ||
|
||
tasks: | ||
- name: Test if the postgres 14 is running | ||
shell: psql -c "SELECT version();" | ||
args: | ||
executable: /bin/bash | ||
register: postgresql_version | ||
become: true | ||
become_user: postgres | ||
become_method: sudo | ||
changed_when: false | ||
failed_when: | ||
- '"PostgreSQL 14" not in postgresql_version.stdout' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
- name: Verify | ||
hosts: all | ||
become: true | ||
|
||
tasks: | ||
- name: Test if the postgres 15 is running | ||
shell: psql -c "SELECT version();" | ||
args: | ||
executable: /bin/bash | ||
register: postgresql_version | ||
become: true | ||
become_user: postgres | ||
become_method: sudo | ||
changed_when: false | ||
failed_when: | ||
- '"PostgreSQL 15" not in postgresql_version.stdout' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters