Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add an env var we can detect in various utilities for managing oriole instances #1344

Merged
merged 1 commit into from
Nov 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions ansible/tasks/stage2-setup-postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,13 @@
state: present
when: is_psql_oriole and stage2_nix
become: yes

- name: Add ORIOLEDB_ENABLED environment variable
ansible.builtin.lineinfile:
path: /etc/environment
line: 'ORIOLEDB_ENABLED=true'
when: is_psql_oriole and stage2_nix
become: yes

- name: Install Postgres from nix binary cache
become: yes
Expand Down
2 changes: 1 addition & 1 deletion ansible/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ postgres_major:

# Full version strings for each major version
postgres_release:
postgresorioledb-17: "orioledb-17.0.1.001"
postgresorioledb-17: "orioledb-17.0.1.002"
postgres15: "15.8.1.013"
postgres16: "16.3.1.019"

Expand Down