summaryrefslogtreecommitdiffstats
path: root/ansible/roles/package-repository-check/molecule/ubuntu/molecule.yml
blob: 23e7a61e6da78cfdf01217dc15256f2eb64825ea (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: ${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/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
  options:
    v: 1