summaryrefslogtreecommitdiffstats
path: root/ansible/roles/certificates/molecule/ubuntu/molecule.yml
blob: 051379dfa80c43363d605f68e3f0d4ac88e0da80 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
dependency:
  name: galaxy
driver:
  name: docker
lint:
  name: yamllint
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
  lint:
    name: ansible-lint
  env:
    ANSIBLE_ROLES_PATH: ../../../../test/roles
    ANSIBLE_LIBRARY: ../../../../library
  playbooks:
    converge: ../default/playbook.yml
  inventory:
    links:
      group_vars: ../../../../group_vars/
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:
    #  * [infrastructure-server -> localhost] => certificates : Generate an OpenSSL CSR.
    #  * [infrastructure-server -> localhost] => certificates : Generate root CA certificate
    #  * [infrastructure-server] => certificates : Upload certificates to infrastructure server
    #  * [infrastructure-server] => certificates : Copy root certificate
    #  * [infrastructure-server] => certificates : Extract root certificate
    #  * [infrastructure-server] => docker : Setup docker dns settings
    #  * [kubernetes-node-1] => certificates : Copy root certificate
    #  * [kubernetes-node-1] => certificates : Extract root certificate
    #  * [kubernetes-node-1] => certificates : Extract root certificate
    - side_effect
    - verify
    - cleanup
    - destroy
verifier:
  name: testinfra
  options:
    verbose: true
  lint:
    name: flake8
  directory: ../default/tests