You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Connects to the Authentik instance deployed on HoloRouter and bootstraps everything VCF SSO needs on the IdP side. This includes creating the VCF Administrators group, creating an admin user, registering the holodeck OIDC provider, and binding it to the vcf application. Returns an OIDC provider object containing the client ID and secret.
830
+
831
+
---
832
+
833
+
### Parameters
834
+
835
+
| Name | Description | Required | Default |
836
+
|------|-------------|----------|---------|
837
+
|`-AdminPassword`| Password for the Authentik admin user | ✅ ||
838
+
|`-Site`| Site identifier (a or b) | ✅ ||
839
+
|`-UserPassword`| Password for the new VCF admin user | ✅ ||
840
+
|`-BootstrapToken`| Token used for bootstrapping | ✅ ||
841
+
842
+
---
843
+
844
+
### Examples
845
+
846
+
Example 1
847
+
848
+
Initializes Authentik and stores the OIDC provider object in a variable
Calls the VCF Operations IAM API to wire Authentik in as the trusted external IdP and kick off the initial SCIM synchronisation. It creates the SSO realm, registers Authentik as the OIDC/SCIM IdP, generates a SCIM sync token, triggers SCIM sync, and assigns the `vcf_administrator` role to the synced group.
868
+
869
+
---
870
+
871
+
### Parameters
872
+
873
+
| Name | Description | Required | Default |
874
+
|------|-------------|----------|---------|
875
+
|`-Site`| Site identifier (a or b) | ✅ ||
876
+
|`-Username`| Username for VCF Operations admin | ✅ ||
877
+
|`-Password`| Password for VCF Operations admin | ✅ ||
878
+
|`-BootstrapToken`| Token used for bootstrapping | ✅ ||
879
+
|`-oidcProvider`| OIDC provider object returned by `Initialize-Authentik`| ✅ ||
| DiskSizeInGB | Array |**Optional**| Custom disk sizes (max 3) | Array of numbers |
880
880
881
+
##### Configure VCF SSO with Authentik (Holodeck 9.1)
882
+
883
+
Holodeck 9.1 ships Authentik as a first-class service on the Holorouter. Authentik is a self-hosted, open-source Identity Provider (IdP) that supports OIDC, OAuth2, SAML 2.0, and SCIM 2.0. It is deployed automatically inside the HoloRouter's single-node Kubernetes cluster at `auth.vcf.lab` as part of the `Set-HoloRouter` command.
884
+
885
+
VCF Operations 9.0 introduced a fleet-level Single Sign-On (SSO) layer that federates authentication across every VCF component (vCenter, NSX, VCF Automation, and VCF Operations) through a single external identity provider.
886
+
887
+
You can integrate Authentik as the VCF SSO Identity Provider using two PowerShell commands exposed by the Holodeck module. Run them in order after your VCF deployment is complete.
888
+
889
+
**Step 1: Initialize Authentik**
890
+
891
+
`Initialize-Authentik` connects to the Authentik instance at `auth.vcf.lab` and bootstraps everything VCF SSO needs on the IdP side (creates VCF Administrators group, admin user `admin@vcf.lab`, registers holodeck OIDC provider, and creates vcf application).
`Set-VCFSSOConfiguration` calls the VCF Operations IAM API to wire Authentik in as the trusted external IdP and kick off the initial SCIM synchronisation. Pass the OIDC provider returned by `Initialize-Authentik` directly into this command.
After both commands complete, users can log into VCF Operations at `https://ops-a.site-a.vcf.lab` with `admin@vcf.lab` — authenticated by Authentik, authorised by VCF SSO, and carrying full `vcf_administrator` rights.
906
+
881
907
!!! Note
882
908
Each Day 2 operation uses separate parameter sets and cannot be combined in a single invocation. Run separate commands for each operation.
0 commit comments