Skip to content

Commit

Permalink
Merge pull request #422 from khaledk2/upgrade_postgresql_16
Browse files Browse the repository at this point in the history
Upgrade to use PostgreSQL 16
  • Loading branch information
sbesson authored May 20, 2024
2 parents 50983fa + f272bc8 commit 8ff4e58
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ansible/decommission/archive-instance-services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
- redis
- httpd
- nginx
- postgresql-13
- postgresql-16
- prometheus-node-exporter
- prometheus-omero-py
- docker
Expand Down
2 changes: 1 addition & 1 deletion ansible/group_vars/database-hosts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ postgresql_users:

postgresql_server_chown_datadir: True

postgresql_version: "13"
postgresql_version: "16"


idr_omero_readonly_database:
Expand Down
2 changes: 1 addition & 1 deletion ansible/group_vars/omero-hosts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ ice_install_python: false
#idr_ANSIBLE_ENVIRONMENT_VARIABLES: { OMEGO_SSL_NO_VERIFY: 1 }

# This is needed to ensure the client version matches the server
postgresql_version: "13"
postgresql_version: "16"


######################################################################
Expand Down
2 changes: 1 addition & 1 deletion ansible/molecule/publicidr/tests/test_database.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


def test_services_running_and_enabled(host):
service = host.service('postgresql-13')
service = host.service('postgresql-16')
assert service.is_running
assert service.is_enabled

Expand Down

0 comments on commit 8ff4e58

Please sign in to comment.