Compare commits
No commits in common. "c8" and "c8s" have entirely different histories.
7
.gitignore
vendored
7
.gitignore
vendored
@ -1 +1,6 @@
|
||||
SOURCES/ansible-freeipa-1.12.1.tar.gz
|
||||
SOURCES/ansible-freeipa-1.9.2.tar.gz
|
||||
/ansible-freeipa-1.9.2.tar.gz
|
||||
/ansible-freeipa-1.10.0.tar.gz
|
||||
/ansible-freeipa-1.11.0.tar.gz
|
||||
/ansible-freeipa-1.11.1.tar.gz
|
||||
/ansible-freeipa-1.12.0.tar.gz
|
||||
|
7
gating.yaml
Normal file
7
gating.yaml
Normal file
@ -0,0 +1,7 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-8
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
||||
- !PassingTestCaseRule {test_case_name: idm-ci.brew-build.tier1.functional}
|
1
sources
Normal file
1
sources
Normal file
@ -0,0 +1 @@
|
||||
SHA512 (ansible-freeipa-1.12.1.tar.gz) = 9e1a3ff9fe3b9d7bd6bc30096d89e0d7e1a60fb22b66efc272c3e3561c977f9c13dc0645eb734f2d5a5b2a11115bc81671cfc9e615b5cacbc06724d4ea4dd44c
|
1
tests/.fmf/version
Normal file
1
tests/.fmf/version
Normal file
@ -0,0 +1 @@
|
||||
1
|
5
tests/provision.fmf
Normal file
5
tests/provision.fmf
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
|
||||
standard-inventory-qcow2:
|
||||
qemu:
|
||||
m: 3G
|
8
tests/sanity/install-server.yml
Normal file
8
tests/sanity/install-server.yml
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
- name: Playbook to configure IPA servers
|
||||
hosts: ipaserver
|
||||
become: true
|
||||
|
||||
roles:
|
||||
- role: ipaserver
|
||||
state: present
|
10
tests/sanity/inventory
Normal file
10
tests/sanity/inventory
Normal file
@ -0,0 +1,10 @@
|
||||
[ipaserver]
|
||||
localhost
|
||||
|
||||
[ipaserver:vars]
|
||||
ipaserver_domain=example.test
|
||||
ipaserver_realm=EXAMPLE.TEST
|
||||
ipaserver_setup_dns=yes
|
||||
ipaserver_auto_forwarders=yes
|
||||
ipaadmin_password=Secret123
|
||||
ipadm_password=Secret123
|
3
tests/sanity/runtest.sh
Normal file
3
tests/sanity/runtest.sh
Normal file
@ -0,0 +1,3 @@
|
||||
#!/bin/sh -eux
|
||||
|
||||
ansible-playbook -i inventory install-server.yml -v --connection=local
|
14
tests/tests.yml
Normal file
14
tests/tests.yml
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
- hosts: localhost
|
||||
tags:
|
||||
- classic
|
||||
roles:
|
||||
- role: standard-test-basic
|
||||
required_packages:
|
||||
- firewalld
|
||||
# pip3 is used to install ansible 2.8+
|
||||
#- ansible
|
||||
required_services:
|
||||
- firewalld
|
||||
tests:
|
||||
- sanity
|
Loading…
Reference in New Issue
Block a user