-
Notifications
You must be signed in to change notification settings - Fork 0
/
legacy.k8s.keycloak.org_externalkeycloaks_crd.yaml
93 lines (93 loc) · 3.69 KB
/
legacy.k8s.keycloak.org_externalkeycloaks_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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: externalkeycloaks.legacy.k8s.keycloak.org
spec:
group: legacy.k8s.keycloak.org
names:
kind: ExternalKeycloak
listKind: ExternalKeycloakList
plural: externalkeycloaks
singular: externalkeycloak
scope: Namespaced
versions:
- name: v1alpha1
schema:
openAPIV3Schema:
description: Keycloak is the Schema for the keycloaks API.
properties:
apiVersion:
description: 'APIVersion defines the versioned schema of this representation
of an object. Servers should convert recognized schemas to the latest
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
type: string
kind:
description: 'Kind is a string value representing the REST resource this
object represents. Servers may infer this from the endpoint the client
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
type: string
metadata:
type: object
spec:
description: KeycloakSpec defines the desired state of Keycloak.
properties:
contextRoot:
description: Context root for Keycloak. If not set, the default "/auth/"
is used. Must end with "/".
type: string
url:
description: The URL to use for the keycloak admin API. Needs to be
set if external is true.
type: string
type: object
status:
description: KeycloakStatus defines the observed state of Keycloak.
properties:
credentialSecret:
description: The secret where the admin credentials are to be found.
type: string
externalURL:
description: External URL for accessing Keycloak instance from outside
the cluster. Is identical to external.URL if it's specified, otherwise
is computed (e.g. from Ingress).
type: string
internalURL:
description: An internal URL (service name) to be used by the admin
client.
type: string
message:
description: Human-readable message indicating details about current
operator phase or error.
type: string
phase:
description: Current phase of the operator.
type: string
ready:
description: True if all resources are in a ready state and all work
is done.
type: boolean
secondaryResources:
additionalProperties:
items:
type: string
type: array
description: 'A map of all the secondary resources types and names
created for this CR. e.g "Deployment": [ "DeploymentName1", "DeploymentName2"
].'
type: object
version:
description: Version of Keycloak or RHSSO running on the cluster.
type: string
required:
- credentialSecret
- internalURL
- message
- phase
- ready
- version
type: object
type: object
served: true
storage: true
subresources:
status: {}