c10468cd74
In Kubernetes 1.16 CRDs got out of beta and added to regular apiextensions.k8s.io/v1. This was accompanied with some format changes. This patch updates our CRD definitions to new version. Change-Id: Ib5e64fe72581ef601e5df2e317900566cd476470
48 lines
1.1 KiB
YAML
48 lines
1.1 KiB
YAML
apiVersion: apiextensions.k8s.io/v1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: kuryrnets.openstack.org
|
|
spec:
|
|
group: openstack.org
|
|
scope: Cluster
|
|
names:
|
|
plural: kuryrnets
|
|
singular: kuryrnet
|
|
kind: KuryrNet
|
|
versions:
|
|
- name: v1
|
|
served: true
|
|
storage: true
|
|
additionalPrinterColumns:
|
|
- name: SUBNET-CIDR
|
|
type: string
|
|
description: The subnet CIDR allocated to the namespace
|
|
jsonPath: .spec.subnetCIDR
|
|
- name: Age
|
|
type: date
|
|
jsonPath: .metadata.creationTimestamp
|
|
schema:
|
|
openAPIV3Schema:
|
|
type: object
|
|
properties:
|
|
spec:
|
|
type: object
|
|
required:
|
|
- netId
|
|
- routerId
|
|
- subnetCIDR
|
|
- subnetId
|
|
properties:
|
|
netId:
|
|
type: string
|
|
populated:
|
|
type: boolean
|
|
routerId:
|
|
type: string
|
|
sgId:
|
|
type: string
|
|
subnetCIDR:
|
|
type: string
|
|
subnetId:
|
|
type: string
|