-
-
Create and manage connections and resources
-
Connection to Microsoft System Center Virtual Machine Manager
-
Connection to Red Hat OpenShift
-
Cloud Connector Standalone Citrix Secure Ticketing Authority (STA) service
-
-
-
This content has been machine translated dynamically.
Dieser Inhalt ist eine maschinelle Übersetzung, die dynamisch erstellt wurde. (Haftungsausschluss)
Cet article a été traduit automatiquement de manière dynamique. (Clause de non responsabilité)
Este artículo lo ha traducido una máquina de forma dinámica. (Aviso legal)
此内容已经过机器动态翻译。 放弃
このコンテンツは動的に機械翻訳されています。免責事項
이 콘텐츠는 동적으로 기계 번역되었습니다. 책임 부인
Este texto foi traduzido automaticamente. (Aviso legal)
Questo contenuto è stato tradotto dinamicamente con traduzione automatica.(Esclusione di responsabilità))
This article has been machine translated.
Dieser Artikel wurde maschinell übersetzt. (Haftungsausschluss)
Ce article a été traduit automatiquement. (Clause de non responsabilité)
Este artículo ha sido traducido automáticamente. (Aviso legal)
この記事は機械翻訳されています.免責事項
이 기사는 기계 번역되었습니다.책임 부인
Este artigo foi traduzido automaticamente.(Aviso legal)
这篇文章已经过机器翻译.放弃
Questo articolo è stato tradotto automaticamente.(Esclusione di responsabilità))
Translation failed!
Connection to Red Hat OpenShift (Preview)
Create and manage connections and resources describes the wizards that create a connection. The following information covers details specific to Red Hat OpenShift.
Note:
Before creating a connection to Red Hat OpenShift, you need to first finish setting up your Red Hat OpenShift. See Red Hat OpenShift virtualization environments
Create a connection
You can create a connection to the Red Hat OpenShift cluster using:
Create a connection using Web Studio
- In Web Studio, open Hosting > Add Connection and Resources.
- On the Connection page, follow these steps to configure the connection:
- Select Create a new connection.
- Select Red Hat OpenShift as the Connection type.
- In the Connection address field, enter the IP address, hostname, or FQDN of the OpenShift Server.
- Enter your service account token and a friendly connection name.
- Leave the Zone setting as the default.
-
Click Next. The connection setup starts.
If a self-signed certificate is detected, a warning page appears with the certificate thumbprint. To proceed:
- Compare the thumbprint with the server’s to verify the certificate’s validity.
-
If valid, select Trust certificate and click OK to complete the connection setup.
The certificate is marked as trusted, and the thumbprint is saved for future validation.
Create a connection using PowerShell commands
When you create a connection using PowerShell command, provide the following information:
- Hosting connection name
- Cluster API address
- User name
- Password (Service account token)
- SSLThumbprint: This is a CA Cert thumbprint and not the API server thumbprint. The server provides the CA Cert thumbprint if you try to create a hosting connection without specifying the thumbprint.
- ZoneUid
- Open the PowerShell window.
- Run
add-pssnapin citrix*
. -
Run the following command to create the hosting connection.
If you try to create a hosting connection without specifying the thumbprint, then the server provides the CA Cert thumbprint. For example:
$newItemParameters = @{ ConnectionType= "Custom" PluginId= "OpenShiftPluginFactory" HypervisorAddress = "https://api.myopenshiftclusteraddress.mydomain.local:6443" Path= "XDHyp:\Connections\OpenShiftConnectionName" Persist= $true UserName= "__ServiceAccount__" Password= "<service account token>" ErrorVariable= "connectionError" } & New-Item @newItemParameters $newItemParameters["SSLThumbprint"] = $connectionError[0].ErrorData.Thumbprint $connection = & New-Item @newItemParameters $brokerConnection = New-BrokerHypervisorConnection -HypHypervisorConnectionUid $connection.HypervisorConnectionUid <!--NeedCopy-->
Create a hosting unit
A hosting unit represents an environment where VMs are created. To create the hosting unit, you need the following inputs from OpenShift:
- Namespace
- StorageClasses
- Network Attachment Definition
A hosting unit is a namespace-bound. This means that one hosting unit can access only one namespace and manages the VMs under the namespace.
You can create a hosting unit using only PowerShell currently:
When you create a hosting unit using PowerShell command, provide the following information:
- A hosting connection name
- A hosting unit name
- The target namespace name
- A StorageClasses name
- A NetworkAttachmentDefinition name
- Open the PowerShell window.
- Run
add-pssnapin citrix*
. -
Run PowerShell commands to create the hosting unit. For example:
$HostingConnectionName = "OpenShiftConnectionName" $HostingUnitName = "HostingUnitName" $TargetNamespace = "TargetNamespaceName" $StorageClassToUse = "YourStorageClassesName" $NetworkAttachmentDefinition = "YourNetworkAttachmentDefinitionName" New-HypStorage ` -StoragePath @("XDHyp:\Connections\$HostingConnectionName\$TargetNamespace.namespace\$StorageClassToUse.storage") ` -StorageType "TemporaryStorage" New-Item ` -CustomProperties "" ` -HypervisorConnectionName $HostingConnectionName ` -NetworkPath @("XDHyp:\Connections\$HostingConnectionName\$TargetNamespace.namespace\$NetworkAttachmentDefinition.network") ` -Path @("XDHyp:\HostingUnits\$HostingUnitName") -RootPath "XDHyp:\Connections\$HostingConnectionName\$TargetNamespace.namespace" ` -StoragePath @("XDHyp:\Connections\$HostingConnectionName\$TargetNamespace.namespace\$StorageClassToUse.storage") <!--NeedCopy-->
Where to go next
- If you’re in the initial deployment process, see Create machine catalogs
- For Red Hat OpenShift specific information, see Create a Red Hat OpenShift catalog
More information
Share
Share
In this article
This Preview product documentation is Citrix Confidential.
You agree to hold this documentation confidential pursuant to the terms of your Citrix Beta/Tech Preview Agreement.
The development, release and timing of any features or functionality described in the Preview documentation remains at our sole discretion and are subject to change without notice or consultation.
The documentation is for informational purposes only and is not a commitment, promise or legal obligation to deliver any material, code or functionality and should not be relied upon in making Citrix product purchase decisions.
If you do not agree, select I DO NOT AGREE to exit.