Skip to content

Commit eee2be6

Browse files
author
Hunter-Thompson
committed
chore: missing crd in install
1 parent c409622 commit eee2be6

File tree

1 file changed

+84
-0
lines changed

1 file changed

+84
-0
lines changed

docs/install.yaml

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,64 @@ metadata:
77
---
88
apiVersion: apiextensions.k8s.io/v1
99
kind: CustomResourceDefinition
10+
metadata:
11+
annotations:
12+
controller-gen.kubebuilder.io/version: v0.9.2
13+
creationTimestamp: null
14+
name: inviteusers.settings.github.com
15+
spec:
16+
group: settings.github.com
17+
names:
18+
kind: InviteUser
19+
listKind: InviteUserList
20+
plural: inviteusers
21+
singular: inviteuser
22+
scope: Namespaced
23+
versions:
24+
- name: v1beta1
25+
schema:
26+
openAPIV3Schema:
27+
description: InviteUser is the Schema for the inviteusers API
28+
properties:
29+
apiVersion:
30+
description: 'APIVersion defines the versioned schema of this representation
31+
of an object. Servers should convert recognized schemas to the latest
32+
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
33+
type: string
34+
kind:
35+
description: 'Kind is a string value representing the REST resource this
36+
object represents. Servers may infer this from the endpoint the client
37+
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
38+
type: string
39+
metadata:
40+
type: object
41+
spec:
42+
description: InviteUserSpec defines the desired state of InviteUser
43+
properties:
44+
organization:
45+
description: GitHub Org
46+
type: string
47+
users:
48+
items:
49+
properties:
50+
email:
51+
type: string
52+
username:
53+
type: string
54+
type: object
55+
type: array
56+
type: object
57+
status:
58+
description: InviteUserStatus defines the observed state of InviteUser
59+
type: object
60+
type: object
61+
served: true
62+
storage: true
63+
subresources:
64+
status: {}
65+
---
66+
apiVersion: apiextensions.k8s.io/v1
67+
kind: CustomResourceDefinition
1068
metadata:
1169
annotations:
1270
controller-gen.kubebuilder.io/version: v0.9.2
@@ -263,6 +321,32 @@ metadata:
263321
creationTimestamp: null
264322
name: github-operator-manager-role
265323
rules:
324+
- apiGroups:
325+
- settings.github.com
326+
resources:
327+
- inviteusers
328+
verbs:
329+
- create
330+
- delete
331+
- get
332+
- list
333+
- patch
334+
- update
335+
- watch
336+
- apiGroups:
337+
- settings.github.com
338+
resources:
339+
- inviteusers/finalizers
340+
verbs:
341+
- update
342+
- apiGroups:
343+
- settings.github.com
344+
resources:
345+
- inviteusers/status
346+
verbs:
347+
- get
348+
- patch
349+
- update
266350
- apiGroups:
267351
- settings.github.com
268352
resources:

0 commit comments

Comments
 (0)