k8s-sig-cluster-lifecycleawskubesprayhigh-availabilityansiblekubernetes-clustergcekubernetesbare-metal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
437 B
16 lines
437 B
---
|
|
# raw: cat /etc/issue.net | grep '{{ bootstrap_versions }}'
|
|
|
|
- name: Bootstrap | Check if bootstrap is needed
|
|
raw: which python
|
|
register: need_bootstrap
|
|
ignore_errors: True
|
|
tags: facts
|
|
|
|
- name: Bootstrap | Install python 2.x
|
|
raw: apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y python-minimal
|
|
when: need_bootstrap | failed
|
|
|
|
- set_fact:
|
|
ansible_python_interpreter: "/usr/bin/python"
|
|
tags: facts
|