ARO-RP/pkg/api/openshiftcluster.go

392 строки
14 KiB
Go
Исходник Обычный вид История

2019-10-16 06:29:17 +03:00
package api
2019-12-17 04:16:50 +03:00
// Copyright (c) Microsoft Corporation.
// Licensed under the Apache License 2.0.
2019-10-16 06:29:17 +03:00
import (
"time"
)
// OpenShiftCluster represents an OpenShift cluster
type OpenShiftCluster struct {
MissingFields
2019-11-28 19:31:37 +03:00
// ID, Name and Type are cased as the user provided them at create time.
// ID, Name, Type and Location are immutable.
ID string `json:"id,omitempty"`
Name string `json:"name,omitempty"`
Type string `json:"type,omitempty"`
Location string `json:"location,omitempty"`
SystemData SystemData `json:"systemData,omitempty"`
Tags map[string]string `json:"tags,omitempty"`
Properties OpenShiftClusterProperties `json:"properties,omitempty"`
2019-10-16 06:29:17 +03:00
}
// CreatedByType by defines user type, which executed the request
// This field should match common-types field names for swagger and sdk generation
type CreatedByType string
const (
CreatedByTypeApplication CreatedByType = "Application"
CreatedByTypeKey CreatedByType = "Key"
CreatedByTypeManagedIdentity CreatedByType = "ManagedIdentity"
CreatedByTypeUser CreatedByType = "User"
)
// SystemData represets metadata provided by arm. Time fields inside the struct are pointers
// so we could better verify which fields are provided to use by ARM or not. Time package
// does not comply with omitempty. More details about requirements:
// https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/common-api-contracts.md#system-metadata-for-all-azure-resources
type SystemData struct {
CreatedBy string `json:"createdBy,omitempty"`
CreatedByType CreatedByType `json:"createdByType,omitempty"`
CreatedAt *time.Time `json:"createdAt,omitempty"`
LastModifiedBy string `json:"lastModifiedBy,omitempty"`
LastModifiedByType CreatedByType `json:"lastModifiedByType,omitempty"`
LastModifiedAt *time.Time `json:"lastModifiedAt,omitempty"`
}
// SecureBytes represents an encrypted []byte
2020-01-23 14:53:53 +03:00
type SecureBytes []byte
// SecureString represents an encrypted string
2020-01-23 14:53:53 +03:00
type SecureString string
// OpenShiftClusterProperties represents an OpenShift cluster's properties
type OpenShiftClusterProperties struct {
2019-10-16 06:29:17 +03:00
MissingFields
2019-11-28 19:31:37 +03:00
// Provisioning state machine:
//
// From ARM's perspective, Succeeded and Failed are the only two terminal
// provisioning states for asynchronous operations. Clients will poll PUT,
// PATCH or DELETE operations until the resource gets to one of those
// provisioning states.
//
// ARO uses Creating, Updating and Deleting as non-terminal provisioning
// states to signal asynchronous operations from the front end to the back
// end.
//
// In case of failures, the back end sets failedProvisioningState to the
// provisioning state at the time of the failure.
//
// The ARO front end gates provisioning state machine transitions as
// follows:
//
// * no PUT, PATCH or DELETE is accepted unless the cluster is currently in
// a terminal provisioning state.
//
// * DELETE is always allowed regardless of the terminal provisioning state
// of the cluster.
//
// * PUT and PATCH are allowed as long as the cluster is in Succeeded
// provisioning state, or in a Failed provisioning state with the failed
// provisioning state to Updating.
//
// i.e. if a cluster creation or deletion fails, there is no remedy but to
// delete the cluster.
// LastProvisioningState allows the backend to see the last terminal
// ProvisioningState. When they complete, regardless of success, admin
// updates always reset the ProvisioningState to LastProvisioningState.
2020-10-31 22:42:32 +03:00
ArchitectureVersion ArchitectureVersion `json:"architectureVersion,omitempty"`
ProvisioningState ProvisioningState `json:"provisioningState,omitempty"`
LastProvisioningState ProvisioningState `json:"lastProvisioningState,omitempty"`
FailedProvisioningState ProvisioningState `json:"failedProvisioningState,omitempty"`
LastAdminUpdateError string `json:"lastAdminUpdateError,omitempty"`
2021-09-28 03:50:16 +03:00
MaintenanceTask MaintenanceTask `json:"maintenanceTask,omitempty"`
2019-10-16 06:29:17 +03:00
2021-11-17 05:06:47 +03:00
// Operator feature/option flags
OperatorFlags OperatorFlags `json:"operatorFlags,omitempty"`
2021-01-13 15:31:19 +03:00
CreatedAt time.Time `json:"createdAt,omitempty"`
// CreatedBy is the RP version (Git commit hash) that created this cluster
CreatedBy string `json:"createdBy,omitempty"`
2020-11-05 18:25:04 +03:00
// ProvisionedBy is the RP version (Git commit hash) that last successfully
// admin updated this cluster
ProvisionedBy string `json:"provisionedBy,omitempty"`
2020-01-10 17:52:45 +03:00
ClusterProfile ClusterProfile `json:"clusterProfile,omitempty"`
2019-12-31 06:49:34 +03:00
FeatureProfile FeatureProfile `json:"featureProfile,omitempty"`
2020-01-16 18:16:50 +03:00
ConsoleProfile ConsoleProfile `json:"consoleProfile,omitempty"`
2019-11-18 06:07:44 +03:00
ServicePrincipalProfile ServicePrincipalProfile `json:"servicePrincipalProfile,omitempty"`
2019-10-16 06:29:17 +03:00
NetworkProfile NetworkProfile `json:"networkProfile,omitempty"`
MasterProfile MasterProfile `json:"masterProfile,omitempty"`
WorkerProfiles []WorkerProfile `json:"workerProfiles,omitempty"`
2019-12-31 17:22:06 +03:00
APIServerProfile APIServerProfile `json:"apiserverProfile,omitempty"`
2019-12-31 23:45:25 +03:00
IngressProfiles []IngressProfile `json:"ingressProfiles,omitempty"`
// Install is non-nil only when an install is in progress
Install *Install `json:"install,omitempty"`
2019-10-16 06:29:17 +03:00
StorageSuffix string `json:"storageSuffix,omitempty"`
ImageRegistryStorageAccountName string `json:"imageRegistryStorageAccountName,omitempty"`
2019-10-16 06:29:17 +03:00
2021-05-12 14:11:13 +03:00
InfraID string `json:"infraId,omitempty"`
SSHKey SecureBytes `json:"sshKey,omitempty"`
// AdminKubeconfig is installer generated kubeconfig. It is 10 year config,
// and should never be returned to the user.
AdminKubeconfig SecureBytes `json:"adminKubeconfig,omitempty"`
// AROServiceKubeconfig is used by ARO services. In example monitor
AROServiceKubeconfig SecureBytes `json:"aroServiceKubeconfig,omitempty"`
// AROSREKubeconfig is used by portal when proxying request from SRE
AROSREKubeconfig SecureBytes `json:"aroSREKubeconfig,omitempty"`
// KubeadminPassword installer generated kube-admin passworkd
KubeadminPassword SecureString `json:"kubeadminPassword,omitempty"`
// UserAdminKubeconfig is derived admin kubeConfig with shorter live span
UserAdminKubeconfig SecureBytes `json:"userAdminKubeconfig,omitempty"`
2020-03-21 04:57:07 +03:00
RegistryProfiles []*RegistryProfile `json:"registryProfiles,omitempty"`
2019-10-16 06:29:17 +03:00
}
// ProvisioningState represents a provisioning state
type ProvisioningState string
// ProvisioningState constants
const (
2020-01-24 14:19:56 +03:00
ProvisioningStateCreating ProvisioningState = "Creating"
ProvisioningStateUpdating ProvisioningState = "Updating"
ProvisioningStateAdminUpdating ProvisioningState = "AdminUpdating"
ProvisioningStateDeleting ProvisioningState = "Deleting"
ProvisioningStateSucceeded ProvisioningState = "Succeeded"
ProvisioningStateFailed ProvisioningState = "Failed"
2019-10-16 06:29:17 +03:00
)
2021-09-28 03:50:16 +03:00
type MaintenanceTask string
const (
MaintenanceTaskEverything MaintenanceTask = "Everything"
MaintenanceTaskOperator MaintenanceTask = "OperatorUpdate"
)
2021-11-17 05:06:47 +03:00
// Cluster-scoped flags
type OperatorFlags map[string]string
2020-02-18 18:06:47 +03:00
// IsTerminal returns true if state is Terminal
func (t ProvisioningState) IsTerminal() bool {
return ProvisioningStateFailed == t || ProvisioningStateSucceeded == t
}
func (t ProvisioningState) String() string {
return string(t)
}
2021-09-07 20:16:00 +03:00
// FipsValidatedModules determines if FIPS is used.
type FipsValidatedModules string
// FipsValidatedModules constants.
const (
FipsValidatedModulesEnabled FipsValidatedModules = "Enabled"
FipsValidatedModulesDisabled FipsValidatedModules = "Disabled"
)
2020-01-10 17:52:45 +03:00
// ClusterProfile represents a cluster profile.
type ClusterProfile struct {
MissingFields
2021-09-07 20:16:00 +03:00
PullSecret SecureString `json:"pullSecret,omitempty"`
Domain string `json:"domain,omitempty"`
Version string `json:"version,omitempty"`
ResourceGroupID string `json:"resourceGroupId,omitempty"`
FipsValidatedModules FipsValidatedModules `json:"fipsValidatedModules,omitempty"`
2020-01-10 17:52:45 +03:00
}
// FeatureProfile represents a feature profile.
type FeatureProfile struct {
MissingFields
GatewayEnabled bool `json:"gatewayEnabled,omitempty"`
}
2020-01-16 18:16:50 +03:00
// ConsoleProfile represents a console profile.
type ConsoleProfile struct {
MissingFields
URL string `json:"url,omitempty"`
}
2019-11-18 06:07:44 +03:00
// ServicePrincipalProfile represents a service principal profile.
type ServicePrincipalProfile struct {
2019-11-21 05:32:34 +03:00
MissingFields
2020-01-23 14:53:53 +03:00
ClientID string `json:"clientId,omitempty"`
ClientSecret SecureString `json:"clientSecret,omitempty"`
2021-02-15 22:22:40 +03:00
SPObjectID string `json:"spObjectId,omitempty"`
2019-11-18 06:07:44 +03:00
}
2021-08-05 10:36:13 +03:00
// SoftwareDefinedNetwork
type SoftwareDefinedNetwork string
2021-07-07 15:35:48 +03:00
2021-07-19 10:57:18 +03:00
const (
2021-08-05 10:36:13 +03:00
SoftwareDefinedNetworkOVNKubernetes SoftwareDefinedNetwork = "OVNKubernetes"
SoftwareDefinedNetworkOpenShiftSDN SoftwareDefinedNetwork = "OpenShiftSDN"
2021-07-19 10:57:18 +03:00
)
2019-11-18 06:07:44 +03:00
// NetworkProfile represents a network profile
2019-10-16 06:29:17 +03:00
type NetworkProfile struct {
2019-11-21 05:32:34 +03:00
MissingFields
2021-08-05 10:36:13 +03:00
PodCIDR string `json:"podCidr,omitempty"`
ServiceCIDR string `json:"serviceCidr,omitempty"`
SoftwareDefinedNetwork SoftwareDefinedNetwork `json:"softwareDefinedNetwork,omitempty"`
APIServerPrivateEndpointIP string `json:"privateEndpointIp,omitempty"`
GatewayPrivateEndpointIP string `json:"gatewayPrivateEndpointIp,omitempty"`
GatewayPrivateLinkID string `json:"gatewayPrivateLinkId,omitempty"`
2019-10-16 06:29:17 +03:00
}
2021-08-04 10:58:27 +03:00
// EncryptionAtHost represents encryption at host.
type EncryptionAtHost string
// EncryptionAtHost constants
const (
EncryptionAtHostEnabled EncryptionAtHost = "Enabled"
EncryptionAtHostDisabled EncryptionAtHost = "Disabled"
)
2019-10-16 06:29:17 +03:00
// MasterProfile represents a master profile
type MasterProfile struct {
2019-11-21 05:32:34 +03:00
MissingFields
2021-08-04 10:58:27 +03:00
VMSize VMSize `json:"vmSize,omitempty"`
SubnetID string `json:"subnetId,omitempty"`
EncryptionAtHost EncryptionAtHost `json:"encryptionAtHost,omitempty"`
DiskEncryptionSetID string `json:"diskEncryptionSetId,omitempty"`
2019-10-16 06:29:17 +03:00
}
// VMSize represents a VM size
type VMSize string
// VMSize constants
// add required resources in pkg/api/validate/quota.go when adding a new VMSize
2019-10-16 06:29:17 +03:00
const (
VMSizeStandardD2sV3 VMSize = "Standard_D2s_v3"
2020-04-16 04:42:36 +03:00
VMSizeStandardD4asV4 VMSize = "Standard_D4as_v4"
VMSizeStandardD8asV4 VMSize = "Standard_D8as_v4"
VMSizeStandardD16asV4 VMSize = "Standard_D16as_v4"
VMSizeStandardD32asV4 VMSize = "Standard_D32as_v4"
VMSizeStandardD4sV3 VMSize = "Standard_D4s_v3"
VMSizeStandardD8sV3 VMSize = "Standard_D8s_v3"
VMSizeStandardD16sV3 VMSize = "Standard_D16s_v3"
VMSizeStandardD32sV3 VMSize = "Standard_D32s_v3"
2021-06-09 18:07:27 +03:00
VMSizeStandardE4sV3 VMSize = "Standard_E4s_v3"
VMSizeStandardE8sV3 VMSize = "Standard_E8s_v3"
VMSizeStandardE16sV3 VMSize = "Standard_E16s_v3"
VMSizeStandardE32sV3 VMSize = "Standard_E32s_v3"
VMSizeStandardE64isV3 VMSize = "Standard_E64is_v3"
VMSizeStandardE64iV3 VMSize = "Standard_E64i_v3"
2020-04-16 04:42:36 +03:00
VMSizeStandardF4sV2 VMSize = "Standard_F4s_v2"
VMSizeStandardF8sV2 VMSize = "Standard_F8s_v2"
VMSizeStandardF16sV2 VMSize = "Standard_F16s_v2"
VMSizeStandardF32sV2 VMSize = "Standard_F32s_v2"
2021-06-09 18:07:27 +03:00
VMSizeStandardF72sV2 VMSize = "Standard_F72s_v2"
VMSizeStandardM128ms VMSize = "Standard_M128ms"
VMSizeStandardG5 VMSize = "Standard_G5"
VMSizeStandardGS5 VMSize = "Standard_GS5"
VMSizeStandardL4s VMSize = "Standard_L4s"
VMSizeStandardL8s VMSize = "Standard_L8s"
VMSizeStandardL16s VMSize = "Standard_L16s"
VMSizeStandardL32s VMSize = "Standard_L32s"
VMSizeStandardL8sV2 VMSize = "Standard_L8s_v2"
VMSizeStandardL16sV2 VMSize = "Standard_L16s_v2"
VMSizeStandardL32sV2 VMSize = "Standard_L32s_v2"
VMSizeStandardL48sV2 VMSize = "Standard_L48s_v2"
VMSizeStandardL64sV2 VMSize = "Standard_L64s_v2"
2019-10-16 06:29:17 +03:00
)
// WorkerProfile represents a worker profile
type WorkerProfile struct {
2019-11-21 05:32:34 +03:00
MissingFields
2021-08-04 10:58:27 +03:00
Name string `json:"name,omitempty"`
VMSize VMSize `json:"vmSize,omitempty"`
DiskSizeGB int `json:"diskSizeGB,omitempty"`
SubnetID string `json:"subnetId,omitempty"`
Count int `json:"count,omitempty"`
EncryptionAtHost EncryptionAtHost `json:"encryptionAtHost,omitempty"`
DiskEncryptionSetID string `json:"diskEncryptionSetId,omitempty"`
2019-10-16 06:29:17 +03:00
}
2019-12-31 17:22:06 +03:00
// APIServerProfile represents an API server profile
type APIServerProfile struct {
MissingFields
Visibility Visibility `json:"visibility,omitempty"`
URL string `json:"url,omitempty"`
IP string `json:"ip,omitempty"`
2021-02-06 20:16:17 +03:00
IntIP string `json:"intIp,omitempty"`
2019-12-31 17:22:06 +03:00
}
// Visibility represents visibility.
type Visibility string
// Visibility constants
const (
VisibilityPublic Visibility = "Public"
VisibilityPrivate Visibility = "Private"
)
2019-12-31 23:45:25 +03:00
// IngressProfile represents an ingress profile
type IngressProfile struct {
MissingFields
Name string `json:"name,omitempty"`
Visibility Visibility `json:"visibility,omitempty"`
IP string `json:"ip,omitempty"`
2019-12-31 23:45:25 +03:00
}
// RegistryProfile represents a registry's login
type RegistryProfile struct {
MissingFields
Name string `json:"name,omitempty"`
Username string `json:"username,omitempty"`
Password SecureString `json:"password,omitempty"`
}
// Install represents an install process
type Install struct {
2019-10-16 06:29:17 +03:00
MissingFields
Now time.Time `json:"now,omitempty"`
Phase InstallPhase `json:"phase"`
2019-10-16 06:29:17 +03:00
}
// InstallPhase represents an install phase
type InstallPhase int
2019-10-16 06:29:17 +03:00
// InstallPhase constants
2019-10-16 06:29:17 +03:00
const (
InstallPhaseBootstrap InstallPhase = iota
InstallPhaseRemoveBootstrap
2019-10-16 06:29:17 +03:00
)
2020-10-31 22:42:32 +03:00
// ArchitectureVersion represents an architecture version
type ArchitectureVersion int
// ArchitectureVersion constants
const (
// ArchitectureVersionV1: 4.3, 4.4: 2 load balancers, 2 NSGs
ArchitectureVersionV1 ArchitectureVersion = iota
2020-10-31 23:31:10 +03:00
// ArchitectureVersionV2: 4.5: 1 load balancer, 1 NSG
ArchitectureVersionV2
2020-10-31 22:42:32 +03:00
)