forked from thalleslmF/java-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcharles-deployment-crd.yaml
63 lines (63 loc) · 1.75 KB
/
charles-deployment-crd.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: charlesdeployments.charlescd.io
spec:
group: charlescd.io
versions:
- name: v1
served: true
# One and only one version must be marked as the storage version.
storage: true
subresources:
status: {}
schema:
openAPIV3Schema:
type: object
properties:
spec:
type: object
properties:
childResources:
type: array
items:
type: object
properties:
apiVersion:
type: string
name:
type: string
plural:
type: string
componentName:
type: string
components:
type: array
items:
type: object
properties:
name:
type: string
image:
type: string
chart:
type: string
provider:
type: string
namespace:
type: string
token:
type: string
required:
- name
- chart
- provider
- namespace
- image
scope: Namespaced
names:
plural: charlesdeployments
singular: charlesdeployment
kind: CharlesDeployment
shortNames:
- cd