mirror of
https://github.com/ansible/awx-operator.git
synced 2026-03-26 21:33:14 +00:00
* This increases security, the awx-operator SA has less cluster-wide
access
* This means one operator can only deploy to a single namespace
* If AWX deployments are needed in multiple namespaces, multiple
awx-operators can be deployed to accomplish this.
Signed-off-by: Christian M. Adams <chadams@redhat.com>
35 lines
559 B
YAML
35 lines
559 B
YAML
---
|
|
dependency:
|
|
name: galaxy
|
|
driver:
|
|
name: delegated
|
|
options:
|
|
managed: False
|
|
ansible_connection_options: {}
|
|
lint: |
|
|
set -e
|
|
yamllint .
|
|
ansible-lint
|
|
platforms:
|
|
- name: test-minikube
|
|
groups:
|
|
- k8s
|
|
provisioner:
|
|
name: ansible
|
|
inventory:
|
|
group_vars:
|
|
all:
|
|
operator_namespace: ${TEST_NAMESPACE:-example-awx}
|
|
env:
|
|
ANSIBLE_ROLES_PATH: ${MOLECULE_PROJECT_DIRECTORY}/roles
|
|
scenario:
|
|
test_sequence:
|
|
- lint
|
|
- destroy
|
|
- dependency
|
|
- syntax
|
|
- create
|
|
- prepare
|
|
- converge
|
|
- destroy
|