You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/install.yaml
+84Lines changed: 84 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,64 @@ metadata:
7
7
---
8
8
apiVersion: apiextensions.k8s.io/v1
9
9
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
0 commit comments