zuul-operator/playbooks/zuul-operator-functional/run.yaml
James E. Blair eff9f360f7 Use kopf operator framework
This switches from the ansible/dhall operator framework to kopf,
an operator framework written in pure Python.  This allows us to:

* Build the operator application as a Python app.
* Build the operator image using the opendev python builder images.
* Run the operator as a Python CLI program "zuul-operator".
* Write procedural Python code to handle operator tasks (such as
  creating new nodepool launchers when providers are added).
* Use Jinja for templating config files and k8s resource files
  (direct pythonic manipulation of resources is an option too).

The new CR nearly matches the existing one, with some minor differences.

Some missing features and documentation are added in the commits
immediately following; they should be reviewed and merged as a unit.

Also, fx waiting for scheduler to settle in functional test since
we changed this log line in Zuul.

Change-Id: Ib37b67e3444b7cd44692d48eee77775ee9049e9f

Change-Id: I70ec31ecd8fe264118215944022b2e7b513dced9
2021-07-20 13:16:07 -07:00

55 lines
1.4 KiB
YAML

- name: install and start zuul operator
hosts: all
tasks:
- name: Setup CRD
command: make install
args:
chdir: "{{ zuul.projects['opendev.org/zuul/zuul-operator'].src_dir }}"
- name: Create required secret
include_tasks: ./tasks/create_test_secrets.yaml
- name: Wait for operator deployment
command: timeout 8m kubectl rollout status deployment/zuul-operator
- name: Deploy CR
include_tasks: tasks/apply_cr.yaml
vars:
spec:
executor:
count: 1
sshkey:
secretName: executor-ssh-key
merger:
count: 1
scheduler:
config:
secretName: zuul-yaml-conf
launcher:
config:
secretName: nodepool-yaml-conf
connections:
opendev.org:
driver: git
baseurl: https://opendev.org
externalConfig:
kubernetes:
secretName: nodepool-kube-config
registry:
count: 1
preview:
count: 1
- name: Wait for services
include_tasks: ./tasks/wait_services.yaml
- name: Test the cert-manager
include_tasks: ./tasks/test_cert_manager.yaml
# TODO: implement
# - name: Test the preview
# include_tasks: ./tasks/test_preview.yaml
# - name: Test the registry
# include_tasks: ./tasks/test_registry.yaml