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

python3 support #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ End users will have tools in their project to see their application logs & metri
At the moment this set of playbooks is designed to run on ubuntu. We recommend using latest LTS (16.04 at times of writing).

Each host (including the master) must have at least the following requirements :
* 2 vcpu
* 2 vCPU
* 4 Go ram
* 2 disks with one for the system with 12Go (8Go for / + 4Go for swap) and one for /var/lib/docker with 8Go.

Expand Down Expand Up @@ -149,7 +149,7 @@ host-3
```
Launch the playbook
```
./ansible-playbook_wrapper create_collect_data.yml -K -e "NAME_PROJECT=collect-data"
./ansible-playbook_wrapper install_skalogs.yml -K -e "NAME_PROJECT=collect-data"
```

This ansible does the following :
Expand Down
3 changes: 3 additions & 0 deletions collectdata/group_vars/all/rancher
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
ansible_python_interpreter: "/usr/bin/python3"
dockerpy_version: 4.2.0

rancher_master_host: 10.10.10.10
rancher_master_port: 8080
rancher_master_url: http://{{rancher_master_host}}:{{rancher_master_port}}
Expand Down
2 changes: 1 addition & 1 deletion configure_host.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
gather_facts: false
tasks:
- name: Make sure python is installed
raw: test -e /usr/bin/python || (apt -y update && apt install -y python-minimal)
raw: test -e /usr/bin/python3 || (apt -y update && apt install -y python3)
become: true

- hosts: "{{ NAME_PROJECT }}"
Expand Down
3 changes: 3 additions & 0 deletions group_vars/all/skalogs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
ansible_python_interpreter: "/usr/bin/python3"
dockerpy_version: 4.2.0

volume_driver: local

elasticsearch_cluster_name: '{{normalized_project_name}}'
Expand Down