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>
30 lines
531 B
YAML
30 lines
531 B
YAML
---
|
|
dependency:
|
|
name: galaxy
|
|
driver:
|
|
name: docker
|
|
lint: |
|
|
set -e
|
|
yamllint .
|
|
ansible-lint
|
|
platforms:
|
|
- name: kind-default
|
|
groups:
|
|
- k8s
|
|
image: bsycorp/kind:latest-1.14
|
|
privileged: True
|
|
override_command: no
|
|
exposed_ports:
|
|
- 8443/tcp
|
|
- 10080/tcp
|
|
published_ports:
|
|
- 0.0.0.0:${TEST_CLUSTER_PORT:-9443}:8443/tcp
|
|
pre_build_image: yes
|
|
provisioner:
|
|
name: ansible
|
|
log: True
|
|
inventory:
|
|
group_vars:
|
|
all:
|
|
operator_namespace: ${TEST_NAMESPACE:-example-awx}
|