43 lines
998 B
YAML
43 lines
998 B
YAML
apiVersion: apiextensions.k8s.io/v1beta1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: refmaps.cic.giftfish.de
|
|
spec:
|
|
group: cic.giftfish.de
|
|
versions:
|
|
- name: v1alpha1
|
|
served: true
|
|
storage: true
|
|
scope: Cluster
|
|
names:
|
|
plural: refmaps
|
|
singular: refmap
|
|
kind: RefMap
|
|
shortNames:
|
|
- rm
|
|
preserveUnknownFields: false
|
|
validation:
|
|
openAPIV3Schema:
|
|
type: object
|
|
properties:
|
|
spec:
|
|
type: object
|
|
properties:
|
|
namespace:
|
|
type: string
|
|
gateway:
|
|
type: object
|
|
properties:
|
|
ref:
|
|
type: string
|
|
action:
|
|
type: string
|
|
pattern: '^(none|delete)$'
|
|
virtualService:
|
|
type: object
|
|
properties:
|
|
ref:
|
|
type: string
|
|
action:
|
|
type: string
|
|
pattern: '^(clear|delete)$'
|