OAuth [config.openshift.io/v1]

    OAuth holds cluster-wide information about OAuth. The canonical name is . It is used to configure the integrated OAuth server. This configuration is only honored when the top level Authentication config has type set to IntegratedOAuth.

    Type

    object

    Required

    • spec

    .spec

    Description

    spec holds user settable values for configuration

    Type

    object

    PropertyTypeDescription

    identityProviders

    array

    identityProviders is an ordered list of ways for a user to identify themselves. When this list is empty, no identities are provisioned for users.

    identityProviders[]

    object

    IdentityProvider provides identities for users authenticating using credentials

    templates

    object

    templates allow you to customize pages like the login page.

    tokenConfig

    object

    tokenConfig contains options for authorization and access tokens

    .spec.identityProviders

    Description

    identityProviders is an ordered list of ways for a user to identify themselves. When this list is empty, no identities are provisioned for users.

    Type

    array

    .spec.identityProviders[]

    Description

    IdentityProvider provides identities for users authenticating using credentials

    Type

    object

    PropertyTypeDescription

    basicAuth

    object

    basicAuth contains configuration options for the BasicAuth IdP

    github

    object

    github enables user authentication using GitHub credentials

    gitlab

    object

    gitlab enables user authentication using GitLab credentials

    google

    object

    google enables user authentication using Google credentials

    htpasswd

    object

    htpasswd enables user authentication using an HTPasswd file to validate credentials

    keystone

    object

    keystone enables user authentication using keystone password credentials

    ldap

    object

    ldap enables user authentication using LDAP credentials

    mappingMethod

    string

    mappingMethod determines how identities from this provider are mapped to users Defaults to “claim”

    name

    string

    name is used to qualify the identities returned by this provider. - It MUST be unique and not shared by any other identity provider used - It MUST be a valid path segment: name cannot equal “.” or “..” or contain “/“ or “%” or “:” Ref: https://godoc.org/github.com/openshift/origin/pkg/user/apis/user/validation#ValidateIdentityProviderName

    openID

    object

    openID enables user authentication using OpenID credentials

    requestHeader

    object

    requestHeader enables user authentication using request header credentials

    type

    string

    type identifies the identity provider type for this entry.

    .spec.identityProviders[].basicAuth

    Description

    basicAuth contains configuration options for the BasicAuth IdP

    Type

    object

    PropertyTypeDescription

    ca

    object

    ca is an optional reference to a config map by name containing the PEM-encoded CA bundle. It is used as a trust anchor to validate the TLS certificate presented by the remote server. The key “ca.crt” is used to locate the data. If specified and the config map or expected key is not found, the identity provider is not honored. If the specified ca data is not valid, the identity provider is not honored. If empty, the default system roots are used. The namespace for this config map is openshift-config.

    tlsClientCert

    object

    tlsClientCert is an optional reference to a secret by name that contains the PEM-encoded TLS client certificate to present when connecting to the server. The key “tls.crt” is used to locate the data. If specified and the secret or expected key is not found, the identity provider is not honored. If the specified certificate data is not valid, the identity provider is not honored. The namespace for this secret is openshift-config.

    tlsClientKey

    object

    tlsClientKey is an optional reference to a secret by name that contains the PEM-encoded TLS private key for the client certificate referenced in tlsClientCert. The key “tls.key” is used to locate the data. If specified and the secret or expected key is not found, the identity provider is not honored. If the specified certificate data is not valid, the identity provider is not honored. The namespace for this secret is openshift-config.

    url

    string

    url is the remote URL to connect to

    .spec.identityProviders[].basicAuth.ca

    Description

    ca is an optional reference to a config map by name containing the PEM-encoded CA bundle. It is used as a trust anchor to validate the TLS certificate presented by the remote server. The key “ca.crt” is used to locate the data. If specified and the config map or expected key is not found, the identity provider is not honored. If the specified ca data is not valid, the identity provider is not honored. If empty, the default system roots are used. The namespace for this config map is openshift-config.

    Type

    object

    Required

    • name
    PropertyTypeDescription

    name

    string

    name is the metadata.name of the referenced config map

    .spec.identityProviders[].basicAuth.tlsClientCert

    Description

    tlsClientCert is an optional reference to a secret by name that contains the PEM-encoded TLS client certificate to present when connecting to the server. The key “tls.crt” is used to locate the data. If specified and the secret or expected key is not found, the identity provider is not honored. If the specified certificate data is not valid, the identity provider is not honored. The namespace for this secret is openshift-config.

    Type

    object

    Required

    • name
    PropertyTypeDescription

    name

    string

    name is the metadata.name of the referenced secret

    .spec.identityProviders[].basicAuth.tlsClientKey

    Description

    tlsClientKey is an optional reference to a secret by name that contains the PEM-encoded TLS private key for the client certificate referenced in tlsClientCert. The key “tls.key” is used to locate the data. If specified and the secret or expected key is not found, the identity provider is not honored. If the specified certificate data is not valid, the identity provider is not honored. The namespace for this secret is openshift-config.

    Type

    object

    Required

    • name
    PropertyTypeDescription

    name

    string

    name is the metadata.name of the referenced secret

    .spec.identityProviders[].github

    Description

    github enables user authentication using GitHub credentials

    Type

    object

    PropertyTypeDescription

    ca

    object

    ca is an optional reference to a config map by name containing the PEM-encoded CA bundle. It is used as a trust anchor to validate the TLS certificate presented by the remote server. The key “ca.crt” is used to locate the data. If specified and the config map or expected key is not found, the identity provider is not honored. If the specified ca data is not valid, the identity provider is not honored. If empty, the default system roots are used. This can only be configured when hostname is set to a non-empty value. The namespace for this config map is openshift-config.

    clientID

    string

    clientID is the oauth client ID

    clientSecret

    object

    clientSecret is a required reference to the secret by name containing the oauth client secret. The key “clientSecret” is used to locate the data. If the secret or expected key is not found, the identity provider is not honored. The namespace for this secret is openshift-config.

    hostname

    string

    hostname is the optional domain (e.g. “mycompany.com”) for use with a hosted instance of GitHub Enterprise. It must match the GitHub Enterprise settings value configured at /setup/settings#hostname.

    organizations

    array (string)

    organizations optionally restricts which organizations are allowed to log in

    teams

    array (string)

    teams optionally restricts which teams are allowed to log in. Format is <org>/<team>.

    .spec.identityProviders[].github.ca

    Description

    ca is an optional reference to a config map by name containing the PEM-encoded CA bundle. It is used as a trust anchor to validate the TLS certificate presented by the remote server. The key “ca.crt” is used to locate the data. If specified and the config map or expected key is not found, the identity provider is not honored. If the specified ca data is not valid, the identity provider is not honored. If empty, the default system roots are used. This can only be configured when hostname is set to a non-empty value. The namespace for this config map is openshift-config.

    Type

    object

    Required

    • name
    PropertyTypeDescription

    name

    string

    name is the metadata.name of the referenced config map

    .spec.identityProviders[].github.clientSecret

    Description

    clientSecret is a required reference to the secret by name containing the oauth client secret. The key “clientSecret” is used to locate the data. If the secret or expected key is not found, the identity provider is not honored. The namespace for this secret is openshift-config.

    Type

    object

    Required

    • name
    PropertyTypeDescription

    name

    string

    name is the metadata.name of the referenced secret

    .spec.identityProviders[].gitlab

    Description

    gitlab enables user authentication using GitLab credentials

    Type

    object

    PropertyTypeDescription

    ca

    object

    ca is an optional reference to a config map by name containing the PEM-encoded CA bundle. It is used as a trust anchor to validate the TLS certificate presented by the remote server. The key “ca.crt” is used to locate the data. If specified and the config map or expected key is not found, the identity provider is not honored. If the specified ca data is not valid, the identity provider is not honored. If empty, the default system roots are used. The namespace for this config map is openshift-config.

    clientID

    string

    clientID is the oauth client ID

    clientSecret

    object

    clientSecret is a required reference to the secret by name containing the oauth client secret. The key “clientSecret” is used to locate the data. If the secret or expected key is not found, the identity provider is not honored. The namespace for this secret is openshift-config.

    url

    string

    url is the oauth server base URL

    .spec.identityProviders[].gitlab.ca

    Description

    ca is an optional reference to a config map by name containing the PEM-encoded CA bundle. It is used as a trust anchor to validate the TLS certificate presented by the remote server. The key “ca.crt” is used to locate the data. If specified and the config map or expected key is not found, the identity provider is not honored. If the specified ca data is not valid, the identity provider is not honored. If empty, the default system roots are used. The namespace for this config map is openshift-config.

    Type

    object

    Required

    • name
    PropertyTypeDescription

    name

    string

    name is the metadata.name of the referenced config map

    .spec.identityProviders[].gitlab.clientSecret

    Description

    clientSecret is a required reference to the secret by name containing the oauth client secret. The key “clientSecret” is used to locate the data. If the secret or expected key is not found, the identity provider is not honored. The namespace for this secret is openshift-config.

    Type

    object

    Required

    PropertyTypeDescription

    name

    string

    name is the metadata.name of the referenced secret

    .spec.identityProviders[].google

    Description

    google enables user authentication using Google credentials

    Type

    object

    PropertyTypeDescription

    clientID

    string

    clientID is the oauth client ID

    clientSecret

    object

    clientSecret is a required reference to the secret by name containing the oauth client secret. The key “clientSecret” is used to locate the data. If the secret or expected key is not found, the identity provider is not honored. The namespace for this secret is openshift-config.

    hostedDomain

    string

    hostedDomain is the optional Google App domain (e.g. “mycompany.com”) to restrict logins to

    .spec.identityProviders[].google.clientSecret

    Description

    clientSecret is a required reference to the secret by name containing the oauth client secret. The key “clientSecret” is used to locate the data. If the secret or expected key is not found, the identity provider is not honored. The namespace for this secret is openshift-config.

    Type

    object

    Required

    • name
    PropertyTypeDescription

    name

    string

    name is the metadata.name of the referenced secret

    .spec.identityProviders[].htpasswd

    Description

    htpasswd enables user authentication using an HTPasswd file to validate credentials

    Type

    object

    PropertyTypeDescription

    fileData

    object

    fileData is a required reference to a secret by name containing the data to use as the htpasswd file. The key “htpasswd” is used to locate the data. If the secret or expected key is not found, the identity provider is not honored. If the specified htpasswd data is not valid, the identity provider is not honored. The namespace for this secret is openshift-config.

    .spec.identityProviders[].htpasswd.fileData

    Description

    fileData is a required reference to a secret by name containing the data to use as the htpasswd file. The key “htpasswd” is used to locate the data. If the secret or expected key is not found, the identity provider is not honored. If the specified htpasswd data is not valid, the identity provider is not honored. The namespace for this secret is openshift-config.

    Type

    object

    • name
    PropertyTypeDescription

    name

    string

    name is the metadata.name of the referenced secret

    .spec.identityProviders[].keystone

    Description

    keystone enables user authentication using keystone password credentials

    Type

    object

    PropertyTypeDescription

    ca

    object

    ca is an optional reference to a config map by name containing the PEM-encoded CA bundle. It is used as a trust anchor to validate the TLS certificate presented by the remote server. The key “ca.crt” is used to locate the data. If specified and the config map or expected key is not found, the identity provider is not honored. If the specified ca data is not valid, the identity provider is not honored. If empty, the default system roots are used. The namespace for this config map is openshift-config.

    string

    domainName is required for keystone v3

    tlsClientCert

    object

    tlsClientCert is an optional reference to a secret by name that contains the PEM-encoded TLS client certificate to present when connecting to the server. The key “tls.crt” is used to locate the data. If specified and the secret or expected key is not found, the identity provider is not honored. If the specified certificate data is not valid, the identity provider is not honored. The namespace for this secret is openshift-config.

    tlsClientKey

    object

    tlsClientKey is an optional reference to a secret by name that contains the PEM-encoded TLS private key for the client certificate referenced in tlsClientCert. The key “tls.key” is used to locate the data. If specified and the secret or expected key is not found, the identity provider is not honored. If the specified certificate data is not valid, the identity provider is not honored. The namespace for this secret is openshift-config.

    url

    string

    url is the remote URL to connect to

    .spec.identityProviders[].keystone.ca

    Description

    ca is an optional reference to a config map by name containing the PEM-encoded CA bundle. It is used as a trust anchor to validate the TLS certificate presented by the remote server. The key “ca.crt” is used to locate the data. If specified and the config map or expected key is not found, the identity provider is not honored. If the specified ca data is not valid, the identity provider is not honored. If empty, the default system roots are used. The namespace for this config map is openshift-config.

    Type

    object

    Required

    • name
    PropertyTypeDescription

    name

    string

    name is the metadata.name of the referenced config map

    .spec.identityProviders[].keystone.tlsClientCert

    Description

    tlsClientCert is an optional reference to a secret by name that contains the PEM-encoded TLS client certificate to present when connecting to the server. The key “tls.crt” is used to locate the data. If specified and the secret or expected key is not found, the identity provider is not honored. If the specified certificate data is not valid, the identity provider is not honored. The namespace for this secret is openshift-config.

    Type

    object

    Required

    • name
    PropertyTypeDescription

    name

    string

    name is the metadata.name of the referenced secret

    .spec.identityProviders[].keystone.tlsClientKey

    Description

    tlsClientKey is an optional reference to a secret by name that contains the PEM-encoded TLS private key for the client certificate referenced in tlsClientCert. The key “tls.key” is used to locate the data. If specified and the secret or expected key is not found, the identity provider is not honored. If the specified certificate data is not valid, the identity provider is not honored. The namespace for this secret is openshift-config.

    Type

    object

    Required

    • name
    PropertyTypeDescription

    name

    string

    name is the metadata.name of the referenced secret

    .spec.identityProviders[].ldap

    Description

    ldap enables user authentication using LDAP credentials

    Type

    object

    PropertyTypeDescription

    attributes

    object

    attributes maps LDAP attributes to identities

    bindDN

    string

    bindDN is an optional DN to bind with during the search phase.

    bindPassword

    object

    bindPassword is an optional reference to a secret by name containing a password to bind with during the search phase. The key “bindPassword” is used to locate the data. If specified and the secret or expected key is not found, the identity provider is not honored. The namespace for this secret is openshift-config.

    ca

    object

    ca is an optional reference to a config map by name containing the PEM-encoded CA bundle. It is used as a trust anchor to validate the TLS certificate presented by the remote server. The key “ca.crt” is used to locate the data. If specified and the config map or expected key is not found, the identity provider is not honored. If the specified ca data is not valid, the identity provider is not honored. If empty, the default system roots are used. The namespace for this config map is openshift-config.

    insecure

    boolean

    insecure, if true, indicates the connection should not use TLS WARNING: Should not be set to true with the URL scheme “ldaps://“ as “ldaps://“ URLs always attempt to connect using TLS, even when insecure is set to true When true, “ldap://“ URLS connect insecurely. When false, “ldap://“ URLs are upgraded to a TLS connection using StartTLS as specified in .

    url

    string

    url is an RFC 2255 URL which specifies the LDAP search parameters to use. The syntax of the URL is: ldap://host:port/basedn?attribute?scope?filter

    .spec.identityProviders[].ldap.attributes

    Description

    attributes maps LDAP attributes to identities

    Type

    object

    .spec.identityProviders[].ldap.bindPassword

    Description

    bindPassword is an optional reference to a secret by name containing a password to bind with during the search phase. The key “bindPassword” is used to locate the data. If specified and the secret or expected key is not found, the identity provider is not honored. The namespace for this secret is openshift-config.

    Type

    object

    Required

    • name
    PropertyTypeDescription

    name

    string

    name is the metadata.name of the referenced secret

    .spec.identityProviders[].ldap.ca

    Description

    ca is an optional reference to a config map by name containing the PEM-encoded CA bundle. It is used as a trust anchor to validate the TLS certificate presented by the remote server. The key “ca.crt” is used to locate the data. If specified and the config map or expected key is not found, the identity provider is not honored. If the specified ca data is not valid, the identity provider is not honored. If empty, the default system roots are used. The namespace for this config map is openshift-config.

    Type

    object

    Required

    • name
    PropertyTypeDescription

    name

    string

    name is the metadata.name of the referenced config map

    .spec.identityProviders[].openID

    Description

    openID enables user authentication using OpenID credentials

    Type

    object

    PropertyTypeDescription

    ca

    object

    ca is an optional reference to a config map by name containing the PEM-encoded CA bundle. It is used as a trust anchor to validate the TLS certificate presented by the remote server. The key “ca.crt” is used to locate the data. If specified and the config map or expected key is not found, the identity provider is not honored. If the specified ca data is not valid, the identity provider is not honored. If empty, the default system roots are used. The namespace for this config map is openshift-config.

    claims

    object

    claims mappings

    clientID

    string

    clientID is the oauth client ID

    clientSecret

    object

    clientSecret is a required reference to the secret by name containing the oauth client secret. The key “clientSecret” is used to locate the data. If the secret or expected key is not found, the identity provider is not honored. The namespace for this secret is openshift-config.

    extraAuthorizeParameters

    object (string)

    extraAuthorizeParameters are any custom parameters to add to the authorize request.

    extraScopes

    array (string)

    extraScopes are any scopes to request in addition to the standard “openid” scope.

    issuer

    string

    issuer is the URL that the OpenID Provider asserts as its Issuer Identifier. It must use the https scheme with no query or fragment component.

    .spec.identityProviders[].openID.ca

    Description

    ca is an optional reference to a config map by name containing the PEM-encoded CA bundle. It is used as a trust anchor to validate the TLS certificate presented by the remote server. The key “ca.crt” is used to locate the data. If specified and the config map or expected key is not found, the identity provider is not honored. If the specified ca data is not valid, the identity provider is not honored. If empty, the default system roots are used. The namespace for this config map is openshift-config.

    Type

    object

    Required

    • name
    PropertyTypeDescription

    name

    string

    name is the metadata.name of the referenced config map

    .spec.identityProviders[].openID.claims

    Description

    claims mappings

    Type

    object

    PropertyTypeDescription

    email

    array (string)

    email is the list of claims whose values should be used as the email address. Optional. If unspecified, no email is set for the identity

    name

    array (string)

    name is the list of claims whose values should be used as the display name. Optional. If unspecified, no display name is set for the identity

    preferredUsername

    array (string)

    preferredUsername is the list of claims whose values should be used as the preferred username. If unspecified, the preferred username is determined from the value of the sub claim

    .spec.identityProviders[].openID.clientSecret

    Description

    clientSecret is a required reference to the secret by name containing the oauth client secret. The key “clientSecret” is used to locate the data. If the secret or expected key is not found, the identity provider is not honored. The namespace for this secret is openshift-config.

    Type

    object

    Required

    • name
    PropertyTypeDescription

    name

    string

    name is the metadata.name of the referenced secret

    .spec.identityProviders[].requestHeader

    Description

    requestHeader enables user authentication using request header credentials

    Type

    object

    PropertyTypeDescription

    ca

    object

    ca is a required reference to a config map by name containing the PEM-encoded CA bundle. It is used as a trust anchor to validate the TLS certificate presented by the remote server. Specifically, it allows verification of incoming requests to prevent header spoofing. The key “ca.crt” is used to locate the data. If the config map or expected key is not found, the identity provider is not honored. If the specified ca data is not valid, the identity provider is not honored. The namespace for this config map is openshift-config.

    challengeURL

    string

    challengeURL is a URL to redirect unauthenticated /authorize requests to Unauthenticated requests from OAuth clients which expect WWW-Authenticate challenges will be redirected here. ${url} is replaced with the current URL, escaped to be safe in a query parameter https://www.example.com/sso-login?then=${url} ${query} is replaced with the current query string Required when challenge is set to true.

    clientCommonNames

    array (string)

    clientCommonNames is an optional list of common names to require a match from. If empty, any client certificate validated against the clientCA bundle is considered authoritative.

    emailHeaders

    array (string)

    emailHeaders is the set of headers to check for the email address

    headers

    array (string)

    headers is the set of headers to check for identity information

    loginURL

    string

    loginURL is a URL to redirect unauthenticated /authorize requests to Unauthenticated requests from OAuth clients which expect interactive logins will be redirected here ${url} is replaced with the current URL, escaped to be safe in a query parameter https://www.example.com/sso-login?then=${url} ${query} is replaced with the current query string Required when login is set to true.

    nameHeaders

    array (string)

    nameHeaders is the set of headers to check for the display name

    preferredUsernameHeaders

    array (string)

    preferredUsernameHeaders is the set of headers to check for the preferred username

    .spec.identityProviders[].requestHeader.ca

    Description

    ca is a required reference to a config map by name containing the PEM-encoded CA bundle. It is used as a trust anchor to validate the TLS certificate presented by the remote server. Specifically, it allows verification of incoming requests to prevent header spoofing. The key “ca.crt” is used to locate the data. If the config map or expected key is not found, the identity provider is not honored. If the specified ca data is not valid, the identity provider is not honored. The namespace for this config map is openshift-config.

    Type

    object

    Required

    • name
    PropertyTypeDescription

    name

    string

    name is the metadata.name of the referenced config map

    .spec.templates

    Description

    templates allow you to customize pages like the login page.

    Type

    object

    PropertyTypeDescription

    error

    object

    error is the name of a secret that specifies a go template to use to render error pages during the authentication or grant flow. The key “errors.html” is used to locate the template data. If specified and the secret or expected key is not found, the default error page is used. If the specified template is not valid, the default error page is used. If unspecified, the default error page is used. The namespace for this secret is openshift-config.

    login

    object

    login is the name of a secret that specifies a go template to use to render the login page. The key “login.html” is used to locate the template data. If specified and the secret or expected key is not found, the default login page is used. If the specified template is not valid, the default login page is used. If unspecified, the default login page is used. The namespace for this secret is openshift-config.

    providerSelection

    object

    providerSelection is the name of a secret that specifies a go template to use to render the provider selection page. The key “providers.html” is used to locate the template data. If specified and the secret or expected key is not found, the default provider selection page is used. If the specified template is not valid, the default provider selection page is used. If unspecified, the default provider selection page is used. The namespace for this secret is openshift-config.

    .spec.templates.error

    Description

    error is the name of a secret that specifies a go template to use to render error pages during the authentication or grant flow. The key “errors.html” is used to locate the template data. If specified and the secret or expected key is not found, the default error page is used. If the specified template is not valid, the default error page is used. If unspecified, the default error page is used. The namespace for this secret is openshift-config.

    Type

    object

    Required

    • name
    PropertyTypeDescription

    name

    string

    name is the metadata.name of the referenced secret

    .spec.templates.login

    Description

    login is the name of a secret that specifies a go template to use to render the login page. The key “login.html” is used to locate the template data. If specified and the secret or expected key is not found, the default login page is used. If the specified template is not valid, the default login page is used. If unspecified, the default login page is used. The namespace for this secret is openshift-config.

    Type

    object

    Required

    • name
    PropertyTypeDescription

    name

    string

    name is the metadata.name of the referenced secret

    .spec.templates.providerSelection

    Description

    Type

    object

    Required

    PropertyTypeDescription

    name

    string

    name is the metadata.name of the referenced secret

    .spec.tokenConfig

    Description

    tokenConfig contains options for authorization and access tokens

    Type

    object

    PropertyTypeDescription

    accessTokenInactivityTimeout

    string

    accessTokenInactivityTimeout defines the token inactivity timeout for tokens granted by any client. The value represents the maximum amount of time that can occur between consecutive uses of the token. Tokens become invalid if they are not used within this temporal window. The user will need to acquire a new token to regain access once a token times out. Takes valid time duration string such as “5m”, “1.5h” or “2h45m”. The minimum allowed value for duration is 300s (5 minutes). If the timeout is configured per client, then that value takes precedence. If the timeout value is not specified and the client does not override the value, then tokens are valid until their lifetime.

    integer

    accessTokenInactivityTimeoutSeconds - DEPRECATED: setting this field has no effect.

    accessTokenMaxAgeSeconds

    integer

    accessTokenMaxAgeSeconds defines the maximum age of access tokens

    .status

    Description

    status holds observed values from the cluster. They may not be overridden.

    Type

    object

    API endpoints

    The following API endpoints are available:

    • /apis/config.openshift.io/v1/oauths

      • DELETE: delete collection of OAuth

      • GET: list objects of kind OAuth

      • POST: create an OAuth

    • /apis/config.openshift.io/v1/oauths/{name}

      • DELETE: delete an OAuth

      • GET: read the specified OAuth

      • PATCH: partially update the specified OAuth

      • PUT: replace the specified OAuth

    • /apis/config.openshift.io/v1/oauths/{name}/status

      • GET: read status of the specified OAuth

      • PATCH: partially update status of the specified OAuth

    Table 1. Global query parameters
    ParameterTypeDescription

    pretty

    string

    If ‘true’, then the output is pretty printed.

    HTTP method

    DELETE

    Description

    delete collection of OAuth

    Table 2. Query parameters
    ParameterTypeDescription

    allowWatchBookmarks

    boolean

    allowWatchBookmarks requests watch events with type “BOOKMARK”. Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server’s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.

    continue

    string

    The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the “next key”.

    This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.

    fieldSelector

    string

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    labelSelector

    string

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    limit

    integer

    limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.

    The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.

    resourceVersion

    string

    resourceVersion sets a constraint on what resource versions a request may be served from. See for details.

    Defaults to unset

    resourceVersionMatch

    string

    resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.

    Defaults to unset

    timeoutSeconds

    integer

    Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.

    watch

    boolean

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    Table 3. HTTP responses
    HTTP codeReponse body

    200 - OK

    HTTP method

    GET

    Description

    list objects of kind OAuth

    Table 4. Query parameters
    ParameterTypeDescription

    allowWatchBookmarks

    boolean

    allowWatchBookmarks requests watch events with type “BOOKMARK”. Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server’s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.

    continue

    string

    The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the “next key”.

    This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.

    fieldSelector

    string

    A selector to restrict the list of returned objects by their fields. Defaults to everything.

    labelSelector

    string

    A selector to restrict the list of returned objects by their labels. Defaults to everything.

    limit

    integer

    limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.

    The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.

    resourceVersion

    string

    resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.

    Defaults to unset

    resourceVersionMatch

    string

    resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See for details.

    Defaults to unset

    timeoutSeconds

    integer

    Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.

    watch

    boolean

    Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

    Table 5. HTTP responses
    HTTP codeReponse body

    200 - OK

    OAuthList config.openshift.io/v1

    HTTP method

    POST

    Description

    create an OAuth

    Table 6. Query parameters
    ParameterTypeDescription

    dryRun

    string

    When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

    fieldManager

    string

    fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by .

    Table 7. Body parameters
    ParameterTypeDescription

    body

    OAuth config.openshift.io/v1

    Table 8. HTTP responses
    HTTP codeReponse body

    200 - OK

    Table 10. Global query parameters
    ParameterTypeDescription

    pretty

    string

    If ‘true’, then the output is pretty printed.

    HTTP method

    DELETE

    Description

    delete an OAuth

    Table 11. Query parameters
    ParameterTypeDescription

    dryRun

    string

    When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

    gracePeriodSeconds

    integer

    The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.

    orphanDependents

    boolean

    Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the “orphan” finalizer will be added to/removed from the object’s finalizers list. Either this field or PropagationPolicy may be set, but not both.

    propagationPolicy

    string

    Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: ‘Orphan’ - orphan the dependents; ‘Background’ - allow the garbage collector to delete the dependents in the background; ‘Foreground’ - a cascading policy that deletes all dependents in the foreground.

    Table 12. Body parameters
    ParameterTypeDescription

    body

    DeleteOptions_v2 meta/v1

    Table 13. HTTP responses
    HTTP codeReponse body

    200 - OK

    HTTP method

    GET

    Description

    read the specified OAuth

    Table 14. Query parameters
    ParameterTypeDescription

    resourceVersion

    string

    resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.

    Defaults to unset

    Table 15. HTTP responses
    HTTP codeReponse body

    200 - OK

    HTTP method

    PATCH

    Description

    partially update the specified OAuth

    Table 16. Query parameters
    ParameterTypeDescription

    dryRun

    string

    When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

    fieldManager

    string

    fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.

    Table 17. Body parameters
    ParameterTypeDescription

    body

    Table 18. HTTP responses
    HTTP codeReponse body

    200 - OK

    OAuth config.openshift.io/v1

    HTTP method

    PUT

    Description

    replace the specified OAuth

    Table 19. Query parameters
    ParameterTypeDescription

    dryRun

    string

    When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

    fieldManager

    string

    fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by .

    Table 20. Body parameters
    ParameterTypeDescription

    body

    OAuth config.openshift.io/v1

    Table 21. HTTP responses
    HTTP codeReponse body

    200 - OK

    Table 22. Global path parameters
    ParameterTypeDescription

    name

    string

    name of the OAuth

    Table 23. Global query parameters
    ParameterTypeDescription

    pretty

    string

    If ‘true’, then the output is pretty printed.

    HTTP method

    GET

    Description

    read status of the specified OAuth

    Table 24. Query parameters
    ParameterTypeDescription

    resourceVersion

    string

    resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.

    Defaults to unset

    Table 25. HTTP responses
    HTTP codeReponse body

    200 - OK

    HTTP method

    PATCH

    Description

    partially update status of the specified OAuth

    Table 26. Query parameters
    ParameterTypeDescription

    dryRun

    string

    When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

    fieldManager

    string

    fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.

    Table 27. Body parameters
    ParameterTypeDescription

    body

    Table 28. HTTP responses
    HTTP codeReponse body

    200 - OK

    OAuth config.openshift.io/v1

    HTTP method

    PUT

    Description

    replace status of the specified OAuth

    Table 29. Query parameters
    ParameterTypeDescription

    dryRun

    string

    When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

    fieldManager

    string

    fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by .

    Table 30. Body parameters
    ParameterTypeDescription

    body