summaryrefslogtreecommitdiffstats
path: root/ansible/roles/package-repository-check/molecule/ubuntu/molecule.yml
blob: ba08e86b3e396b8e78fd4a6dc024d9166088ad80 (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
54
---
dependency:
  name: galaxy
driver:
  name: docker
lint:
  name: yamllint
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
  lint:
    name: ansible-lint
  playbooks:
    converge: ../default/playbook.yml
  inventory:
    host_vars:
      infrastructure-server:
        cluster_ip: 6.5.4.3
scenario:
  name: ubuntu
  test_sequence:
    - lint
    - cleanup
    - destroy
    - dependency
    - syntax
    - create
    - prepare
    - converge
    # - idempotence
    #  --> Action: 'idempotence'
    #  ERROR: Idempotence test failed because of the following tasks:
    #  * [infra_host] => package-repository-check : Clean yum cache
    #  * [node0] => package-repository-check : Clean yum cache
    - side_effect
    - verify
    - cleanup
    - destroy
verifier:
  name: testinfra
  lint:
    name: flake8
  options:
    v: 1