summaryrefslogtreecommitdiffstats
path: root/ansible/roles/certificates/molecule/ubuntu/molecule.yml
blob: 25fb392e1ffbdfc99d29f5f323a6587a48b9a461 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
dependency:
  name: galaxy
driver:
  name: docker
lint: |
  set -e
  yamllint .
  ansible-lint .
  flake8
platforms:
  - name: infrastructure-server
    image: molecule-${PREBUILD_PLATFORM_DISTRO:-ubuntu}:${PREBUILD_DISTRO_VERSION:-18.04}
    pre_build_image: true
    privileged: true
    command: ${MOLECULE_DOCKER_COMMAND:-""}
    groups:
      - infrastructure
  - name: kubernetes-node-1
    image: molecule-${PREBUILD_PLATFORM_DISTRO:-ubuntu}:${PREBUILD_DISTRO_VERSION:-18.04}
    pre_build_image: true
    privileged: true
    command: ${MOLECULE_DOCKER_COMMAND:-""}
    groups:
      - kubernetes
provisioner:
  name: ansible
  log: true
  env:
    ANSIBLE_ROLES_PATH: ../../../../test/roles
    ANSIBLE_LIBRARY: ../../../../library
  playbooks:
    converge: ../default/converge.yml
    cleanup: ../default/cleanup.yml
  inventory:
    group_vars:
      all:
        certificates:
          organization_name: MoleculeTesters
          state_or_province_name: Poland
          country_name: PL
          locality_name: Krakow
        app_data_path: /opt/moleculetestapp
        all_simulated_hosts:
          - molecule.sim.host1
          - molecule.sim.host2
      infrastructure-server:
        cluster_ip: 1.2.3.4
verifier:
  name: testinfra
  options:
    verbose: true
  directory: ../default/tests