Skip to content

Commit

Permalink
Merge pull request #439 from stackhpc/fix-ci
Browse files Browse the repository at this point in the history
fix virtualenv ci failure
  • Loading branch information
Alex-Welsh authored Mar 10, 2023
2 parents b482ffb + e36a6fb commit abcf78d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
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

0 comments on commit abcf78d

Please sign in to comment.