nutanix

package
v1.4.15 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 8, 2023 License: Apache-2.0 Imports: 9 Imported by: 1

Documentation

Index

Constants

View Source
const (
	// PrismTopologyDiscoveryType is the DiscoveryType for Prism provider.
	PrismTopologyDiscoveryType = TopologyDiscoveryType("Prism")
	// CategoriesTopologyDiscoveryType is the DiscoveryType for Categories provider.
	CategoriesTopologyDiscoveryType = TopologyDiscoveryType("Categories")
)

Variables

View Source
var SecretKind = CredentialKind("Secret")

SecretKind a credential of type "Secret".

Functions

func CloudConfigJSON

func CloudConfigJSON(nutanixPlatform *nutanixtypes.Platform) (string, error)

CloudConfigJSON returns the json string of the created CloudConfig based on the input nutanix platform config.

func GetInfrastructureNutanixPlatformSpec added in v0.9.153

func GetInfrastructureNutanixPlatformSpec(ic *installconfig.InstallConfig) (*configv1.NutanixPlatformSpec, error)

GetInfrastructureNutanixPlatformSpec constructs NutanixPlatformSpec for the infrastructure spec.

Types

type CloudConfig

type CloudConfig struct {
	PrismCentral         PrismEndpoint     `json:"prismCentral"`
	TopologyDiscovery    TopologyDiscovery `json:"topologyDiscovery"`
	EnableCustomLabeling bool              `json:"enableCustomLabeling"`
}

CloudConfig is the config of Nutanix cloud provider ref: https://github.com/nutanix-cloud-native/cloud-provider-nutanix/blob/main/pkg/provider/config/config.go

func (CloudConfig) JSON

func (config CloudConfig) JSON() (string, error)

JSON generates the cloud provider json config for the Nutanix platform.

type CredentialKind

type CredentialKind string

CredentialKind type alias.

type CredentialReference

type CredentialReference struct {
	// Kind of the Nutanix credential
	Kind CredentialKind `json:"kind"`

	// Name of the credential.
	Name string `json:"name"`
	// namespace of the credential.
	Namespace string `json:"namespace"`
}

CredentialReference holds details of a credential.

type PrismEndpoint

type PrismEndpoint struct {
	// address is the endpoint address (DNS name or IP address) of the Nutanix Prism Central or Element (cluster)
	Address string `json:"address"`

	// port is the port number to access the Nutanix Prism Central or Element (cluster)
	Port int32 `json:"port"`

	// Pass credential information for the target Prism instance
	// +optional
	CredentialRef *CredentialReference `json:"credentialRef,omitempty"`
}

PrismEndpoint contains endpoint details for Prism provider.

type TopologyCategories

type TopologyCategories struct {
	ZoneCategory   string `json:"zoneCategory"`
	RegionCategory string `json:"regionCategory"`
}

TopologyCategories contains topology categories.

type TopologyDiscovery

type TopologyDiscovery struct {
	// Default type will be set to Prism via the newConfig function
	Type               TopologyDiscoveryType `json:"type"`
	TopologyCategories *TopologyCategories   `json:"topologyCategories"`
}

TopologyDiscovery of the cloud provider.

type TopologyDiscoveryType

type TopologyDiscoveryType string

TopologyDiscoveryType type alias.

type TopologyInfo

type TopologyInfo struct {
	Zone   string `json:"zone"`
	Region string `json:"region"`
}

TopologyInfo contains topology information.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL