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

[TIGERDATA] Updating tigerdata bundler version to allow passenger to run #4660

Merged
merged 1 commit into from
Feb 12, 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
2 changes: 1 addition & 1 deletion group_vars/tigerdata/common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ app_host_name: '{{ passenger_server_name }}'
application_host_protocol: 'https'
running_on_server: true
tigerdata_honeybadger_key: '{{ vault_honeybadger_api_key }}'
bundler_version: '2.3.26'
bundler_version: '2.5.6'
desired_nodejs_version: 'v18.13.0'
passenger_ruby: "/usr/local/bin/ruby"
install_ruby_from_source: true
Expand Down
2 changes: 1 addition & 1 deletion roles/ruby_s/tasks/install_bundler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
- (bundler_uninstall.stdout is search("default gem"))

- name: ruby_s | install global bundler, specific version
ansible.builtin.command: gem install bundler -v {{ bundler_version }}
ansible.builtin.command: gem install bundler --default -v {{ bundler_version }}
when:
- running_on_server
- bundler_version is defined
Expand Down
Loading