From f51b7ca46ec60efdcb936cadd38685c5abe0a44b Mon Sep 17 00:00:00 2001 From: Qasim Ahmed Date: Thu, 10 Oct 2024 16:56:58 -0400 Subject: [PATCH 1/2] Removed SCVMM provider --- _data/site_menu.yml | 4 ---- managing_providers/_topics/infrastructure_providers.md | 2 -- 2 files changed, 6 deletions(-) diff --git a/_data/site_menu.yml b/_data/site_menu.yml index bd3b2c5a2..e2728040d 100644 --- a/_data/site_menu.yml +++ b/_data/site_menu.yml @@ -70,10 +70,6 @@ using: path: "/docs/reference/latest/managing_providers/infrastructure_providers/vmware_vcenter_providers.html" desc: "Managing VMware vCenter Providers" - - title: Microsoft SCVMM Providers - path: "/docs/reference/latest/managing_providers/infrastructure_providers/microsoft_scvmm_providers.html" - desc: "Managing Microsoft SCVMM Providers" - - title: IBM Power HMC Providers path: "/docs/reference/latest/managing_providers/infrastructure_providers/ibm_power_hmc_providers.html" desc: "Managing IBM Power HMC Providers" diff --git a/managing_providers/_topics/infrastructure_providers.md b/managing_providers/_topics/infrastructure_providers.md index a562ab2a5..3fed7da1f 100644 --- a/managing_providers/_topics/infrastructure_providers.md +++ b/managing_providers/_topics/infrastructure_providers.md @@ -36,8 +36,6 @@ For information on managing specific infrastructure providers see the following. * [VMware vCenter Providers](./infrastructure_providers/vmware_vcenter_providers.html) -* [Microsoft SCVMM Providers](./infrastructure_providers/microsoft_scvmm_providers.html) - * [IBM Power HMC](./infrastructure_providers/ibm_power_hmc_providers.html) * [OpenShift Virtualization (KubeVirt)](./infrastructure_providers/kubevirt_providers.html) From 0f17e54264f5c265f67c0fecb5e40767dc946ca2 Mon Sep 17 00:00:00 2001 From: Qasim Ahmed Date: Fri, 11 Oct 2024 14:41:49 -0400 Subject: [PATCH 2/2] Removed SCVMM files --- ...center_virtual_machine_manager_provider.md | 53 ------------------- .../authenticating_to_microsoft_scvmm.md | 38 ------------- .../microsoft_scvmm_providers.md | 16 ------ 3 files changed, 107 deletions(-) delete mode 100644 managing_providers/infrastructure_providers/_topics/adding_a_microsoft_system_center_virtual_machine_manager_provider.md delete mode 100644 managing_providers/infrastructure_providers/_topics/authenticating_to_microsoft_scvmm.md delete mode 100644 managing_providers/infrastructure_providers/microsoft_scvmm_providers.md diff --git a/managing_providers/infrastructure_providers/_topics/adding_a_microsoft_system_center_virtual_machine_manager_provider.md b/managing_providers/infrastructure_providers/_topics/adding_a_microsoft_system_center_virtual_machine_manager_provider.md deleted file mode 100644 index 89249f809..000000000 --- a/managing_providers/infrastructure_providers/_topics/adding_a_microsoft_system_center_virtual_machine_manager_provider.md +++ /dev/null @@ -1,53 +0,0 @@ -## Adding a Microsoft SCVMM Provider - -After initial installation and creation of a {{ site.data.product.title_short }} -environment, add a Microsoft System Center Virtual Machine Manager -(SCVMM) provider to the appliance. - -**Note:** - -To authenticate the provider using a self-signed Certificate Authority (CA), configure the {{ site.data.product.title_short }} appliance to trust the -certificate using the steps in [Using a Self-Signed CA Certificate](#app-self_signed_CA) before adding -the provider. - -1. Browse to menu: **Compute > Infrastructure > Providers**. - -2. Click **Configuration**, then click - ![1862](../../images/1862.png) (**Add a New Infrastructure Provider**). - -3. Enter the **Name** of the provider to add. The **Name** is how the - device is labeled in the console. - -4. Select **Microsoft System Center VMM** from the **Type** list. - -5. Enter the **Host Name or IP address(IPv4 or IPv6)** of the provider. - -
- - The **Host Name** must use a unique fully qualified domain name. - -
- -6. Select **Kerberos** or **Basic (SSL)** from the **Security - Protocol** list. - - 1. For **Kerberos**: - - 1. Enter the user name and realm in the **Username** field. - - 2. Enter the password in the **Password** field. - - 3. Enter the password again in the **Confirm Password** field. - - 2. For **Basic (SSL)**: - - 1. Enter the user name in the **Username** field. - - 2. Enter the password in the **Password** field. - - 3. Enter the password again in the **Confirm Password** field. - -7. Click **Validate** to confirm that {{ site.data.product.title_short }} can connect to - the Microsoft System Center Virtual Machine Manager. - -8. Click **Add**. diff --git a/managing_providers/infrastructure_providers/_topics/authenticating_to_microsoft_scvmm.md b/managing_providers/infrastructure_providers/_topics/authenticating_to_microsoft_scvmm.md deleted file mode 100644 index dd7f11b71..000000000 --- a/managing_providers/infrastructure_providers/_topics/authenticating_to_microsoft_scvmm.md +++ /dev/null @@ -1,38 +0,0 @@ -## Authenticating to Microsoft SCVMM - -Before you can add a Microsoft SCVMM provider to your {{ site.data.product.title_short }} -environment, you must enable WinRM to listen for HTTP traffic on -Microsoft SCVMM servers. You must also set the appropriate execution -policy on the Microsoft SCVMM server to allow PowerShell scripts from -the appliance to run remotely. - -1. Log in to the Microsoft SCVMM server. - -2. Enable WinRM for configuration. - - winrm quickconfig - -3. Set the following options: - - winrm set winrm/config/client/auth @{Basic="true"} - winrm set winrm/config/service/auth @{Basic="true"} - winrm set winrm/config/service @{AllowUnencrypted="true"} - -4. For Windows 2012 R2 with PowerShell 4.0, use the following syntax to - set these options: - - winrm set winrm/config/client/auth '@{Basic="true"}' - winrm set winrm/config/service/auth '@{Basic="true"}' - winrm set winrm/config/service '@{AllowUnencrypted="true"}' - -5. Enable remote script execution on the SCVMM server using the - Set-ExecutionPolicy cmdlet. - - Set-ExecutionPolicy RemoteSigned - - For more information on SCVMM remote script execution policies, see - [Using the Set-ExecutionPolicy - Cmdlet](http://technet.microsoft.com/en-us/library/ee176961.aspx). - -If PowerShell returns an error, search for `log_dos_error_results` in -`journalctl -t evm -t scvmm` or `oc logs` for information. diff --git a/managing_providers/infrastructure_providers/microsoft_scvmm_providers.md b/managing_providers/infrastructure_providers/microsoft_scvmm_providers.md deleted file mode 100644 index 6c7288bce..000000000 --- a/managing_providers/infrastructure_providers/microsoft_scvmm_providers.md +++ /dev/null @@ -1,16 +0,0 @@ ---- ---- - -# Microsoft SCVMM Providers - -To use a Microsoft System Center Virtual Machine Manager (SCVMM) -provider, add it to the appliance and set up the SCVMM server for -authentication. - -**Note:** - -To use a SCVMM provider, you must have at least one network adapter available for communication between the host and the SCVMM management server. Make sure that **Used by Management** is checked for this network adapter in the SCVMM host properties. - -{% include_relative _topics/authenticating_to_microsoft_scvmm.md %} - -{% include_relative _topics/adding_a_microsoft_system_center_virtual_machine_manager_provider.md %}