8c6ad5f431
This change enables installing the zuul-operator on a recent cluster, where CRD are no longer beta: - Update apiVersion in the CRD - Update cert-manager to v1.8.2 - Update pxc to v1.10.0 - Add openAPIV3Schema to zuul crd (from https://review.opendev.org/c/zuul/zuul-operator/+/800302) Change-Id: I12ac02d609ea6a2806c734ca00023e4d1059af37
179 lines
5.4 KiB
YAML
179 lines
5.4 KiB
YAML
apiVersion: apiextensions.k8s.io/v1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: zuuls.operator.zuul-ci.org
|
|
spec:
|
|
group: operator.zuul-ci.org
|
|
names:
|
|
kind: Zuul
|
|
listKind: ZuulList
|
|
plural: zuuls
|
|
singular: zuul
|
|
shortNames:
|
|
- zuul
|
|
scope: Namespaced
|
|
versions:
|
|
- name: v1alpha1
|
|
served: false
|
|
storage: false
|
|
schema:
|
|
openAPIV3Schema:
|
|
type: object
|
|
- name: v1alpha2
|
|
served: true
|
|
storage: true
|
|
schema:
|
|
openAPIV3Schema:
|
|
type: object
|
|
properties:
|
|
spec:
|
|
type: object
|
|
properties:
|
|
imagePrefix:
|
|
type: string
|
|
imagePullSecrets:
|
|
type: array
|
|
items:
|
|
type: string
|
|
zuulImageVersion:
|
|
type: string
|
|
zuulPreviewImageVersion:
|
|
type: string
|
|
zuulRegistryImageVersion:
|
|
type: string
|
|
nodepoolImageVersion:
|
|
type: string
|
|
database:
|
|
type: object
|
|
properties:
|
|
secretName:
|
|
type: string
|
|
allowUnsafeConfig:
|
|
type: boolean
|
|
default: false
|
|
zookeeper:
|
|
type: object
|
|
properties:
|
|
hosts:
|
|
type: string
|
|
secretName:
|
|
type: string
|
|
env:
|
|
type: object
|
|
x-kubernetes-preserve-unknown-fields: true
|
|
scheduler:
|
|
type: object
|
|
properties:
|
|
config:
|
|
type: object
|
|
properties:
|
|
secretName:
|
|
type: string
|
|
count:
|
|
type: integer
|
|
default: 1
|
|
minimum: 1
|
|
launcher:
|
|
type: object
|
|
properties:
|
|
config:
|
|
type: object
|
|
properties:
|
|
secretName:
|
|
type: string
|
|
executor:
|
|
type: object
|
|
properties:
|
|
count:
|
|
type: integer
|
|
default: 1
|
|
minimum: 1
|
|
sshkey:
|
|
type: object
|
|
properties:
|
|
secretName:
|
|
type: string
|
|
terminationGracePeriodSeconds:
|
|
type: integer
|
|
default: 21600
|
|
minimum: 0
|
|
merger:
|
|
type: object
|
|
properties:
|
|
count:
|
|
type: integer
|
|
git_user_email:
|
|
type: string
|
|
git_user_name:
|
|
type: string
|
|
web:
|
|
type: object
|
|
properties:
|
|
count:
|
|
type: integer
|
|
default: 1
|
|
status_url:
|
|
type: string
|
|
fingergw:
|
|
type: object
|
|
properties:
|
|
count:
|
|
type: integer
|
|
default: 1
|
|
connections:
|
|
type: object
|
|
x-kubernetes-preserve-unknown-fields: true
|
|
externalConfig:
|
|
type: object
|
|
x-kubernetes-preserve-unknown-fields: true
|
|
jobVolumes:
|
|
type: array
|
|
items:
|
|
type: object
|
|
properties:
|
|
context:
|
|
type: string
|
|
pattern: ^(trusted|untrusted)$
|
|
access:
|
|
type: string
|
|
pattern: ^(rw|ro)$
|
|
path:
|
|
type: string
|
|
volume:
|
|
type: object
|
|
properties:
|
|
name:
|
|
type: string
|
|
hostPath:
|
|
type: object
|
|
properties:
|
|
path:
|
|
type: string
|
|
type:
|
|
type: string
|
|
preview:
|
|
type: object
|
|
properties:
|
|
count:
|
|
type: integer
|
|
default: 0
|
|
registry:
|
|
type: object
|
|
properties:
|
|
count:
|
|
type: integer
|
|
default: 0
|
|
volumeSize:
|
|
type: string
|
|
default: "80G"
|
|
tls:
|
|
type: object
|
|
properties:
|
|
secretName:
|
|
type: string
|
|
config:
|
|
type: object
|
|
properties:
|
|
secretName:
|
|
type: string
|