87 lines
2.4 KiB
YAML
87 lines
2.4 KiB
YAML
---
|
|
apiVersion: apiextensions.k8s.io/v1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: bitwarden-templates.lerentis.uploadfilter24.eu
|
|
spec:
|
|
scope: Namespaced
|
|
group: lerentis.uploadfilter24.eu
|
|
names:
|
|
kind: BitwardenTemplate
|
|
plural: bitwarden-templates
|
|
singular: bitwarden-template
|
|
shortNames:
|
|
- bwt
|
|
versions:
|
|
- name: v1beta7
|
|
served: true
|
|
storage: false
|
|
deprecated: true
|
|
schema:
|
|
openAPIV3Schema:
|
|
type: object
|
|
properties:
|
|
spec:
|
|
type: object
|
|
properties:
|
|
filename:
|
|
type: string
|
|
template:
|
|
type: string
|
|
namespace:
|
|
type: string
|
|
name:
|
|
type: string
|
|
secretType:
|
|
type: string
|
|
labels:
|
|
type: object
|
|
x-kubernetes-preserve-unknown-fields: true
|
|
annotations:
|
|
type: object
|
|
x-kubernetes-preserve-unknown-fields: true
|
|
required:
|
|
- filename
|
|
- template
|
|
- namespace
|
|
- name
|
|
- name: v1beta8
|
|
served: true
|
|
storage: true
|
|
schema:
|
|
openAPIV3Schema:
|
|
type: object
|
|
properties:
|
|
spec:
|
|
type: object
|
|
properties:
|
|
namespace:
|
|
type: string
|
|
name:
|
|
type: string
|
|
secretType:
|
|
type: string
|
|
content:
|
|
type: array
|
|
items:
|
|
type: object
|
|
properties:
|
|
element:
|
|
type: object
|
|
properties:
|
|
filename:
|
|
type: string
|
|
template:
|
|
type: string
|
|
required:
|
|
- filename
|
|
- template
|
|
labels:
|
|
type: object
|
|
x-kubernetes-preserve-unknown-fields: true
|
|
annotations:
|
|
type: object
|
|
x-kubernetes-preserve-unknown-fields: true
|
|
required:
|
|
- namespace
|
|
- name |