zuul-operator/setup.cfg
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

60 lines
1.9 KiB
INI

[metadata]
name = zuul-operator
summary = A Kubernetes operator for Zuul
long_description = file: README.rst
long_description_content_type = text/x-rst; charset=UTF-8
author = Zuul Team
author-email = zuul-discuss@lists.zuul-ci.org
url = https://zuul-ci.org/
project_urls =
Browse Source = https://opendev.org/zuul/zuul-operator
Bug Reporting = https://storyboard.openstack.org/#!/project/zuul/zuul-operator
Documentation = https://zuul-ci.org/docs/zuul-operator
Git Clone URL = https://opendev.org/zuul/zuul-operator
License Texts = https://opendev.org/zuul/zuul-operator/src/branch/master/LICENSE
Release Notes = https://zuul-ci.org/docs/zuul-operator/releasenotes.html
keywords = gating continuous integration delivery deployment commandline
license = Apache License, Version 2.0
license_files =
AUTHORS
LICENSE
classifier =
Environment :: Console
Intended Audience :: Information Technology
Intended Audience :: System Administrators
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3 :: Only
Topic :: Software Development :: Quality Assurance
Topic :: Software Development :: Testing
Topic :: Software Development :: Version Control :: Git
Topic :: System :: Systems Administration
Topic :: Utilities
[options]
python-requires = >=3.6
[files]
packages = zuul_operator
package-data =
zuul_operator = templates/*
[pbr]
warnerrors = True
[entry_points]
console_scripts =
zuul-operator = zuul_operator.cmd:main
[build_sphinx]
source-dir = doc/source
build-dir = doc/build
all_files = 1
warning-is-error = 1