Adding Ubuntu support in Ansible - helm role 68/101468/7
authorJan Benedikt <j.benedikt@partner.samsung.com>
Mon, 10 Feb 2020 14:43:55 +0000 (15:43 +0100)
committerJan Benedikt <j.benedikt@partner.samsung.com>
Thu, 30 Apr 2020 11:05:09 +0000 (13:05 +0200)
Extending ansible playbooks of ubuntu support.
Creating new test with Ubuntu image for Molecule in helm role.

Issue-ID: OOM-1671
Signed-off-by: Jan Benedikt <j.benedikt@partner.samsung.com>
Change-Id: If28ee7674c4f9eebc4420f4dbbb1385a408d3802

ansible/roles/helm/molecule/default/molecule.yml
ansible/roles/helm/molecule/ubuntu/group_vars [new symlink]
ansible/roles/helm/molecule/ubuntu/molecule.yml [new file with mode: 0644]

index 869f87f..0d46c2d 100644 (file)
@@ -26,6 +26,8 @@ provisioner:
         app_name: onap
         app_data_path: "/opt/{{ app_name }}"
         helm_bin_dir: /usr/local/bin
+scenario:
+  name: default
 verifier:
   name: testinfra
   lint:
diff --git a/ansible/roles/helm/molecule/ubuntu/group_vars b/ansible/roles/helm/molecule/ubuntu/group_vars
new file mode 120000 (symlink)
index 0000000..5ce8257
--- /dev/null
@@ -0,0 +1 @@
+../default/group_vars/
\ No newline at end of file
diff --git a/ansible/roles/helm/molecule/ubuntu/molecule.yml b/ansible/roles/helm/molecule/ubuntu/molecule.yml
new file mode 100644 (file)
index 0000000..a375a32
--- /dev/null
@@ -0,0 +1,38 @@
+---
+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
+    override_command: False
+    groups:
+      - infrastructure
+provisioner:
+  name: ansible
+  lint:
+    name: ansible-lint
+  env:
+    ANSIBLE_ROLES_PATH: ../../../../test/roles
+    ANSIBLE_LIBRARY: ../../../../library
+  playbooks:
+    prepare: ../default/prepare.yml
+    converge: ../default/playbook.yml
+  inventory:
+    group_vars:
+      all:
+        app_name: onap
+        app_data_path: "/opt/{{ app_name }}"
+        helm_bin_dir: /usr/local/bin
+scenario:
+  name: ubuntu
+verifier:
+  name: testinfra
+  lint:
+    name: flake8
+  directory: ../default/tests