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

62 lines
1.5 KiB
YAML

- name: create config directory
become: yes
file:
path: /srv/git/config/
state: directory
mode: 0777
- name: copy config content
copy:
dest: "/srv/git/config/{{ item.name }}"
content: "{{ item.content }}"
loop:
- name: zuul.yaml
content: |
- pipeline:
name: periodic
manager: independent
trigger:
timer:
- time: '* * * * * *'
- nodeset:
name: pod-fedora
nodes:
- name: container
label: pod-fedora-32
- job:
name: test-job
run: test.yaml
# skip zuul-base-jobs for now as it doesn't work with kubectl
roles:
- zuul: zuul/zuul-jobs
parent: null
nodeset: pod-fedora
- project:
periodic:
jobs:
- test-job
- name: test.yaml
content: |
- hosts: localhost
tasks:
- include_role:
name: start-zuul-console
- debug: msg='Demo job is running'
- name: check job volume
stat:
path: /system-dbus
register: _job_volume
failed_when: not _job_volume.stat.isdir
- pause: seconds=30
- name: commit config
shell: |
cd /srv/git/config/
test -d .git || git init .
git add *.yaml
git commit -m 'Setup config project' || true