work in progress to support raw template types

This commit is contained in:
2022-11-26 13:49:57 +01:00
parent 058e9b918f
commit d8bee2e029
14 changed files with 84 additions and 27 deletions

View File

@ -0,0 +1,34 @@
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: v1beta1
served: true
storage: true
schema:
openAPIV3Schema:
type: object
properties:
spec:
type: object
properties:
template:
type: string
namespace:
type: string
name:
type: string
required:
- template
- namespace
- name