SDDC Manager installs the Linux - Systemd content pack for VMware 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

  1. Log in to VMware Aria Operations for Logs at https://<aria_operations_for_logs_fqdn> as admin.
  2. In the left navigation pane, click Management > Agents.

  3. From the All agents drop-down menu, select Linux - Systemd.

  4. Click Copy template.

  5. In the Name text box, enter Photon OS - Appliance Agent Group and click Copy.

  6. 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

    • VMware Aria Suite Lifecycle FQDN

    • Clustered Workspace ONE Access node FQDNs

  7. Click Refresh data and verify that all agents listed in the filter appear in the Agents list.

  8. At the bottom of the page, click Save new group.

  9. Verify that the log data is showing on the content pack dashboard.

PowerShell Procedure

  1. Start PowerShell.

  2. 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 = "[email protected]"
    $sddcManagerPass = "VMw@re1!"
    
    $agentGroupName = "Photon OS - Appliance Agent Group"
    $agentGroupVmList = "sfo-vcf01.sfo.rainpole.io","xint-vrslcm01.rainpole.io","xint-wsa01a.rainpole.io","xint-wsa01b.rainpole.io","xint-wsa01c.rainpole.io"
    
  3. Perform the configuration by running the command in the PowerShell console.

    Add-vRLIAgentGroup -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -agentGroupType wsa -agentGroupName $agentGroupName -criteria $agentGroupVmList