[MOLECULE] Add molecule setup for cert_manager.yml playbook 13/126413/2
authorBartek Grzybowski <b.grzybowski@partner.samsung.com>
Tue, 4 Jan 2022 11:15:54 +0000 (12:15 +0100)
committerBartek Grzybowski <b.grzybowski@partner.samsung.com>
Wed, 5 Jan 2022 08:40:04 +0000 (08:40 +0000)
Change-Id: I8d6847ac2f201ff3218c02f4ee0406042cea9ee2
Issue-ID: OOM-2908
Signed-off-by: Bartek Grzybowski <b.grzybowski@partner.samsung.com>
ansible/test/play-cert_manager/.yamllint [new file with mode: 0644]
ansible/test/play-cert_manager/molecule/default/converge.yml [new file with mode: 0644]
ansible/test/play-cert_manager/molecule/default/molecule.yml [new file with mode: 0644]
ansible/test/play-cert_manager/molecule/default/prepare.yml [new file with mode: 0644]
ansible/test/play-cert_manager/molecule/default/vars.yml [new file with mode: 0644]

diff --git a/ansible/test/play-cert_manager/.yamllint b/ansible/test/play-cert_manager/.yamllint
new file mode 100644 (file)
index 0000000..c5ae64b
--- /dev/null
@@ -0,0 +1,12 @@
+---
+extends: default
+
+rules:
+  braces:
+    max-spaces-inside: 1
+    level: error
+  brackets:
+    max-spaces-inside: 1
+    level: error
+  line-length: disable
+  truthy: disable
diff --git a/ansible/test/play-cert_manager/molecule/default/converge.yml b/ansible/test/play-cert_manager/molecule/default/converge.yml
new file mode 100644 (file)
index 0000000..30a2778
--- /dev/null
@@ -0,0 +1,8 @@
+---
+- name: Initialize
+  hosts: all
+  tasks:
+    - name: Include variables
+      include_vars: vars.yml
+
+- import_playbook: ../../../../cert_manager.yml
diff --git a/ansible/test/play-cert_manager/molecule/default/molecule.yml b/ansible/test/play-cert_manager/molecule/default/molecule.yml
new file mode 100644 (file)
index 0000000..32d2cf4
--- /dev/null
@@ -0,0 +1,23 @@
+---
+dependency:
+  name: galaxy
+driver:
+  name: docker
+lint: |
+  set -e
+  yamllint .
+  ansible-lint .
+  flake8
+platforms:
+  - name: infrastructure-play-cert-manager
+    image: centos:7
+    groups:
+      - infrastructure
+provisioner:
+  name: ansible
+  env:
+    ANSIBLE_ROLES_PATH: ../../../../test/roles
+    ANSIBLE_LIBRARY: ../../../../library
+verifier:
+  name: testinfra
+  directory: ../../../../roles/cert-manager/molecule/default/tests/
diff --git a/ansible/test/play-cert_manager/molecule/default/prepare.yml b/ansible/test/play-cert_manager/molecule/default/prepare.yml
new file mode 100644 (file)
index 0000000..542484c
--- /dev/null
@@ -0,0 +1,10 @@
+---
+- name: Prepare infra
+  hosts: infrastructure
+  pre_tasks:
+    - name: Include infrastructure group variables
+      include_vars: ../../../../group_vars/infrastructure.yml
+    - name: Include test setup variables
+      include_vars: vars.yml
+  roles:
+    - prepare-cert-manager
diff --git a/ansible/test/play-cert_manager/molecule/default/vars.yml b/ansible/test/play-cert_manager/molecule/default/vars.yml
new file mode 100644 (file)
index 0000000..1e89dc7
--- /dev/null
@@ -0,0 +1,4 @@
+---
+app_name: onap
+app_data_path: "/opt/{{ app_name }}"
+cmctl_version: 1.6.1