This topic for service operators describes how you can get started with Application Single Sign-On for VMware Tanzu (commonly called AppSSO) in a non-production environment by using ClusterUnsafeTestLogin
.
ClusterUnsafeTestLogin
is a zero-config API that produces an unsafe, ready-to-claim AppSSO service offering. When you create a ClusterUnsafeTestLogin
, you get a simple AuthServer
and a ClusterWorkloadRegistrationClass
for it. The AuthServer
has a single login user:password
and is configured to work without extra configuration.
Caution
ClusterUnsafeTestLogin
is not safe for production. For production, useAuthServer
andClusterWorkloadRegistrationClass
.
The ClusterUnsafeTestLogin
resource takes zero configuration except a name
.
To configure a ClusterUnsafeTestLogin
create a YAML file as follows:
---
apiVersion: sso.apps.tanzu.vmware.com/v1alpha1
kind: ClusterUnsafeTestLogin
metadata:
name: demo
After applying the ClusterUnsafeTestLogin
resource, application operators can discover credentials for it by running:
tanzu service class list
Example output:
NAME DESCRIPTION
demo Login by AppSSO - user:password - UNSAFE FOR PRODUCTION!
For how to application operators can claim credentials, see Claim credentials for an Application Single Sign-On service offering.