UDS Package
Package
- Enabling Istio Sidecar Injection:
- The operator facilitates the activation of Istio sidecar injection within namespaces where the CR is deployed.
- Establishing Default-Deny Ingress/Egress Network Policies:
- It sets up default-deny network policies for both ingress and egress, creating a foundational security posture.
- Implementing Layered Allow-List Approach:
- A layered allow-list approach is applied on top of default-deny network policies. This includes essential defaults like Istio requirements and DNS egress.
- Providing Targeted Remote Endpoints Network Policies:
- The operator creates targeted network policies for remote endpoints, such as
KubeAPI
andCloudMetadata
. This approach aims to enhance policy management by reducing redundancy (DRY) and facilitating dynamic bindings in scenarios where static definitions are impractical.
- The operator creates targeted network policies for remote endpoints, such as
- Creating Istio Virtual Services and Related Ingress Gateway Network Policies:
- In addition, the operator is responsible for generating Istio Virtual Services and the associated network policies for the ingress gateway.
- SSO Group Authentication:
- Group authentication determines who can access the application based on keycloak group membership.
- At this time
anyOf
allows defining a list of groups, a user must belong to at least one of them. - Custom client
protocolMapper
’s that will be created alongside the client and added to the client’s dedicated scope.
- Authservice Protection:
- Authservice authentication provides application agnostic SSO for applications that opt-in.
Example UDS Package CR
Example UDS Package CR with SSO Templating
By default, UDS generates a secret for the Single Sign-On (SSO) client that encapsulates all client contents as an opaque secret. In this setup, each key within the secret corresponds to its own environment variable or file, based on the method used to mount the secret. If customization of the secret rendering is required, basic templating can be achieved using the secretTemplate
property. Below are examples showing this functionality. To see how templating works, please see the Regex website.
Protecting a UDS Package with Authservice
To enable authentication for applications that do not have native OIDC configuration, UDS Core can utilize Authservice as an authentication layer.
Follow these steps to protect your application with Authservice:
- Set
enableAuthserviceSelector
with a matching label selector in thesso
configuration of the Package. - Ensure that the pods of the application are labeled with the corresponding selector
For a complete example, see app-authservice-tenant.yaml
Trusted Certificate Authority
Authservice can be configured with additional trusted certificate bundle in cases where UDS Core ingress gateways are deployed with private PKI.
To configure, set UDS_CA_CERT as an environment variable with a Base64 encoded PEM formatted certificate bundle that can be used to verify the certificates of the tenant gateway.
Alternatively you can specify the CA_CERT
variable in your uds-config.yaml
:
See configuring Istio Ingress for the relevant documentation on configuring ingress certificates.
Creating a UDS Package with a Device Flow client
Some applications may not have a web UI / server component to login to and may instead grant OAuth tokens to devices. This flow is known as the OAuth 2.0 Device Authorization Grant and is supported in a UDS Package with the following configuration:
This configuration does not create a secret in the cluster and instead tells the UDS Operator to create a public client (one that requires no auth secret) that enables the oauth2.device.authorization.grant.enabled
flow and disables the standard redirect auth flow. Because this creates a public client configuration that deviates from this is limited - if your application requires both the Device Authorization Grant and the standard flow this is currently not supported without creating two separate clients.
Creating a UDS Package with a Service Account Roles client
Some applications may need to access resources / obtain OAuth tokens on behalf of themselves vice users. This may be needed to allow API access to Authservice protected applications (outside of a web browser). This is commonly used in machine-to-machine authentication for automated processes. This type of grant in OAuth 2.0 is known as the Client Credentials Grant and is supported in a UDS Package with the following configuration:
Setting serviceAccountsEnabled: true
requires standardFlowEnabled: false
and is incompatible with publicClient: true
.
If needed, multiple clients can be added to the same application: an AuthService client, a device flow client, and as many service account clients as required.
A keycloak service account JWT can be distinguished by a username prefix of service-account-
and a new claim called client_id
. Note that the aud
field is not set by default, hence the mapper in the example.
SSO Client Attribute Validation
The SSO spec supports a subset of the Keycloak attributes for clients, but does not support all of them. The current supported attributes are:
- oidc.ciba.grant.enabled
- backchannel.logout.session.required
- backchannel.logout.revoke.offline.tokens
- post.logout.redirect.uris
- oauth2.device.authorization.grant.enabled
- pkce.code.challenge.method
- client.session.idle.timeout
- client.session.max.lifespan
- access.token.lifespan
- saml.assertion.signature
- saml.client.signature
- saml_assertion_consumer_url_post
- saml_assertion_consumer_url_redirect
- saml_single_logout_service_url_post
- saml_single_logout_service_url_redirect