SDDC Manager installs the Linux - Systemd content pack that is designed for Photon OS. You create and configure an agent group to apply common settings to the agents on the appliances in the VMware Cloud Foundation instance.
UI Procedure
- Log in to vRealize Log Insight at https://<vrealize_log_insight_fqdn> as admin.
In the left navigation pane, click
.From the All agents drop-down menu, select Linux - Systemd.
Click Copy template.
In the Name text box, enter Photon OS - Appliance Agent Group and click Copy.
Configure the following filter for the agent group.
You separate multiple host name values by pressing Enter.
Object Type
Operator
Values
Hostname
matches
SDDC Manager FQDN
vRealize Suite Lifecycle Manager FQDN
Clustered Workspace ONE Access node FQDNs
Click Refresh data and verify that all agents listed in the filter appear in the Agents list.
At the bottom of the page, click Save new group.
Verify that the log data is showing on the content pack dashboard.
PowerShell Procedure
Start Windows PowerShell.
Replace the values in the sample code with values from your VMware Cloud Foundation Planning and Preparation Workbook and run the commands in the PowerShell console.
$sddcManagerFqdn = "sfo-vcf01.sfo.rainpole.io" $sddcManagerUser = "administrator@vsphere.local" $sddcManagerPass = "VMw@re1!" $vmList = "sfo-vcf01.sfo.rainpole.io","xint-vrslcm01.rainpole.io","xint-wsa01a.rainpole.io","xint-wsa01b.rainpole.io","xint-wsa01c.rainpole.io" $agentGroupName = "Photon OS - Appliance Agent Group"
Perform the configuration by running the command in the PowerShell console.
Add-vRLIAgentGroup -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -agentGroupType wsa -agentGroupName $agentGroupName -criteria $vmList