Skip to content

Commit

Permalink
CLDR-17288 vagrant/ansible: fix for openliberty / mysql
Browse files Browse the repository at this point in the history
- also up machine size to 8G
  • Loading branch information
srl295 committed Dec 18, 2023
1 parent 50e6e41 commit 88757ec
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tools/scripts/ansible/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Vagrant.configure("2") do |config|
config.vm.provider "virtualbox" do |v|
v.memory = 1024
v.memory = 8192
end
# increase the boot timeout
config.vm.boot_timeout = 600
Expand Down
2 changes: 1 addition & 1 deletion tools/scripts/ansible/roles/openliberty/meta/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ galaxy_info:

license: Unicode-DFS-2016

min_ansible_version: 2.1
min_ansible_version: "2.1"

platforms:
- name: Ubuntu
Expand Down
3 changes: 2 additions & 1 deletion tools/scripts/ansible/roles/openliberty/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
- name: Install OpenLiberty GPG key
become: true
ansible.builtin.apt_key:
url: http://public.dhe.ibm.com/ibmdl/export/pub/software/openliberty/runtime/os-native-packages/public.key
url: https://public.dhe.ibm.com/ibmdl/export/pub/software/openliberty/runtime/os-native-packages/public.key
state: present
when:
- ansible_distribution == "Ubuntu"
Expand All @@ -19,3 +19,4 @@
ansible.builtin.apt:
pkg:
- openliberty
- openliberty
2 changes: 2 additions & 0 deletions tools/scripts/ansible/vars/mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ mysql_databases:
collation: latin1_bin
mysql_enabled_on_startup: true
mysql_bind_address: localhost
mysql_replication_master: 'localhost'
mysql_replication_master_inventory_host: 'localhost'

0 comments on commit 88757ec

Please sign in to comment.