Skip to content
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
9 changes: 8 additions & 1 deletion etc/kayobe/ansible/configure-aio-resources.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,14 @@
state: present
become: true

- name: Install python openstack client
- name: Ensure latest version of pip is installed
pip:
name: pip
state: latest
virtualenv: '{{ venv }}'
virtualenv_command: "/usr/bin/python3 -m venv"

- name: Ensure python openstack client is installed
pip:
name: python-openstackclient
virtualenv: '{{ venv }}'
Expand Down
3 changes: 3 additions & 0 deletions etc/kayobe/environments/ci-aio/kolla/globals.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,6 @@ docker_yum_gpgkey: "https://download.docker.com/linux/centos/gpg"

# Elasticsearch memory tuning
es_heap_size: 1g

# Increase Grafana timeout
grafana_start_first_node_retries: 20