blob: a641ae0a2e3fd267f732d0e233abfea5f64b2cc8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
---
dependency:
name: galaxy
driver:
name: docker
lint: |
set -e
yamllint .
ansible-lint .
flake8
platforms:
- name: infrastructure-server
image: ${PLATFORM_DISTRO:-ubuntu}:${DISTRO_VERSION:-18.04}
groups:
- infrastructure
- name: kubernetes-node-1
image: ${PLATFORM_DISTRO:-ubuntu}:${DISTRO_VERSION:-18.04}
groups:
- kubernetes
provisioner:
name: ansible
playbooks:
converge: ../default/converge.yml
inventory:
host_vars:
infrastructure-server:
cluster_ip: 6.5.4.3
verifier:
name: testinfra
options:
v: 1
|