2019-08-21 12:10:25 +02:00
---
2021-05-10 10:35:08 +02:00
apiVersion : apiextensions.k8s.io/v1
2019-08-21 12:10:25 +02:00
kind : CustomResourceDefinition
metadata :
2021-05-10 10:35:08 +02:00
annotations :
controller-gen.kubebuilder.io/version : v0.2.9
2019-08-21 12:10:25 +02:00
creationTimestamp : null
name : oauth2clients.hydra.ory.sh
spec :
group : hydra.ory.sh
names :
kind : OAuth2Client
2021-05-10 10:35:08 +02:00
listKind : OAuth2ClientList
2019-08-21 12:10:25 +02:00
plural : oauth2clients
2021-05-10 10:35:08 +02:00
singular : oauth2client
scope : Namespaced
versions :
- name : v1alpha1
schema :
openAPIV3Schema :
description : OAuth2Client is the Schema for the oauth2clients API
properties :
apiVersion :
2021-12-08 09:25:34 +01:00
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'
2021-05-10 10:35:08 +02:00
type : string
kind :
2021-12-08 09:25:34 +01:00
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'
2021-05-10 10:35:08 +02:00
type : string
metadata :
type : object
spec :
description : OAuth2ClientSpec defines the desired state of OAuth2Client
properties :
allowedCorsOrigins :
description : AllowedCorsOrigins is an array of allowed CORS origins
items :
description : RedirectURI represents a redirect URI for the client
pattern : \w+:/?/?[^\s]+
type : string
type : array
audience :
2021-12-08 09:25:34 +01:00
description : Audience is a whitelist defining the audiences this client is allowed to request tokens for
2021-05-10 10:35:08 +02:00
items :
type : string
type : array
clientName :
2021-12-08 09:25:34 +01:00
description : ClientName is the human-readable string name of the client to be presented to the end-user during authorization.
2019-08-21 12:10:25 +02:00
type : string
2021-05-10 10:35:08 +02:00
grantTypes :
2021-12-08 09:25:34 +01:00
description : GrantTypes is an array of grant types the client is allowed to use.
2021-05-10 10:35:08 +02:00
items :
description : GrantType represents an OAuth 2.0 grant type
enum :
- client_credentials
- authorization_code
- implicit
- refresh_token
type : string
maxItems : 4
minItems : 1
type : array
hydraAdmin :
2021-12-08 09:25:34 +01:00
description : HydraAdmin is the optional configuration to use for managing this client
2019-08-21 12:10:25 +02:00
properties :
2021-05-10 10:35:08 +02:00
endpoint :
2021-12-08 09:25:34 +01:00
description : Endpoint is the endpoint for the hydra instance on which to set up the client. This value will override the value provided to `--endpoint` (defaults to `"/clients"` in the application)
2021-05-10 10:35:08 +02:00
pattern : (^$|^/.*)
2019-08-21 12:10:25 +02:00
type : string
2021-05-10 10:35:08 +02:00
forwardedProto :
2021-12-08 09:25:34 +01:00
description : ForwardedProto overrides the `--forwarded-proto` flag. The value "off" will force this to be off even if `--forwarded-proto` is specified
2021-05-10 10:35:08 +02:00
pattern : (^$|https?|off)
2019-08-21 12:10:25 +02:00
type : string
2021-05-10 10:35:08 +02:00
port :
2021-12-08 09:25:34 +01:00
description : Port is the port for the hydra instance on which to set up the client. This value will override the value provided to `--hydra-port`
2021-05-10 10:35:08 +02:00
maximum : 65535
type : integer
url :
2021-12-08 09:25:34 +01:00
description : URL is the URL for the hydra instance on which to set up the client. This value will override the value provided to `--hydra-url`
2021-05-10 10:35:08 +02:00
maxLength : 64
pattern : (^$|^https?://.*)
2019-08-21 12:10:25 +02:00
type : string
type : object
2021-05-10 10:35:08 +02:00
metadata :
description : Metadata is abritrary data
2021-06-03 20:14:06 +02:00
nullable : true
2021-06-03 15:00:02 +02:00
type : object
x-kubernetes-preserve-unknown-fields : true
2021-05-10 10:35:08 +02:00
postLogoutRedirectUris :
2021-12-08 09:25:34 +01:00
description : PostLogoutRedirectURIs is an array of the post logout redirect URIs allowed for the application
2021-05-10 10:35:08 +02:00
items :
description : RedirectURI represents a redirect URI for the client
pattern : \w+:/?/?[^\s]+
2019-11-14 01:11:13 -07:00
type : string
2021-05-10 10:35:08 +02:00
type : array
redirectUris :
2021-12-08 09:25:34 +01:00
description : RedirectURIs is an array of the redirect URIs allowed for the application
2021-05-10 10:35:08 +02:00
items :
description : RedirectURI represents a redirect URI for the client
pattern : \w+:/?/?[^\s]+
2019-11-14 01:11:13 -07:00
type : string
2021-05-10 10:35:08 +02:00
type : array
responseTypes :
2021-12-08 09:25:34 +01:00
description : ResponseTypes is an array of the OAuth 2.0 response type strings that the client can use at the authorization endpoint.
2021-05-10 10:35:08 +02:00
items :
2021-12-08 09:25:34 +01:00
description : ResponseType represents an OAuth 2.0 response type strings
2021-05-10 10:35:08 +02:00
enum :
- id_token
- code
- token
2021-12-08 09:25:34 +01:00
- code token
- code id_token
- id_token token
- code id_token token
2019-11-14 01:11:13 -07:00
type : string
2021-05-10 10:35:08 +02:00
maxItems : 3
minItems : 1
type : array
scope :
2021-12-08 09:25:34 +01:00
description : Scope is a string containing a space-separated list of scope values (as described in Section 3.3 of OAuth 2.0 [RFC6749]) that the client can use when requesting access tokens.
2021-05-10 10:35:08 +02:00
pattern : ([a-zA-Z0-9\.\*]+\s?)+
2019-11-14 01:11:13 -07:00
type : string
2021-05-10 10:35:08 +02:00
secretName :
2021-12-08 09:25:34 +01:00
description : SecretName points to the K8s secret that contains this client's ID and password
2021-05-10 10:35:08 +02:00
maxLength : 253
minLength : 1
pattern : '[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*'
2020-02-01 14:26:22 +01:00
type : string
2021-05-10 10:35:08 +02:00
tokenEndpointAuthMethod :
allOf :
- enum :
- client_secret_basic
- client_secret_post
- private_key_jwt
- none
- enum :
- client_secret_basic
- client_secret_post
- private_key_jwt
- none
2021-12-08 09:25:34 +01:00
description : Indication which authentication method shoud be used for the token endpoint
2019-08-21 12:10:25 +02:00
type : string
2021-05-10 10:35:08 +02:00
required :
- grantTypes
- scope
- secretName
type : object
status :
description : OAuth2ClientStatus defines the observed state of OAuth2Client
properties :
observedGeneration :
2021-12-08 09:25:34 +01:00
description : ObservedGeneration represents the most recent generation observed by the daemon set controller.
2021-05-10 10:35:08 +02:00
format : int64
type : integer
reconciliationError :
2021-12-08 09:25:34 +01:00
description : ReconciliationError represents an error that occurred during the reconciliation process
2021-05-10 10:35:08 +02:00
properties :
description :
2021-12-08 09:25:34 +01:00
description : Description is the description of the reconciliation error
2021-05-10 10:35:08 +02:00
type : string
statusCode :
description : Code is the status code of the reconciliation error
type : string
type : object
type : object
type : object
2019-08-21 12:10:25 +02:00
served : true
storage : true
2021-05-10 10:35:08 +02:00
subresources :
status : {}
2019-08-21 12:10:25 +02:00
status :
acceptedNames :
kind : ""
plural : ""
conditions : [ ]
storedVersions : [ ]