spectrocloud.ClusterMaas
Explore with Pulumi AI
Resource for managing MAAS clusters in Spectro Cloud through Palette.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as spectrocloud from "@pulumi/spectrocloud";
const account = spectrocloud.getCloudaccountMaas({
name: _var.cluster_cloud_account_name,
});
const profile = spectrocloud.getClusterProfile({
name: _var.cluster_cluster_profile_name,
});
const bsl = spectrocloud.getBackupStorageLocation({
name: _var.backup_storage_location_name,
});
const cluster = new spectrocloud.ClusterMaas("cluster", {
tags: [
"dev",
"department:devops",
"owner:bob",
],
cloudAccountId: account.then(account => account.id),
cloudConfig: {
domain: "maas.mycompany.com",
},
clusterProfiles: [{
id: profile.then(profile => profile.id),
}],
backupPolicy: {
schedule: "0 0 * * SUN",
backupLocationId: bsl.then(bsl => bsl.id),
prefix: "prod-backup",
expiryInHour: 7200,
includeDisks: true,
includeClusterResources: true,
},
scanPolicy: {
configurationScanSchedule: "0 0 * * SUN",
penetrationScanSchedule: "0 0 * * SUN",
conformanceScanSchedule: "0 0 1 * *",
},
machinePools: [
{
name: "control-plane",
count: 1,
controlPlane: true,
instanceType: {
minCpu: 8,
minMemoryMb: 16000,
},
placement: {
resourcePool: "Production-Compute-Pool-1",
},
},
{
name: "worker-basic",
count: 1,
instanceType: {
minCpu: 8,
minMemoryMb: 32000,
},
placement: {
resourcePool: "Production-Compute-Pool-2",
},
},
],
});
import pulumi
import pulumi_spectrocloud as spectrocloud
account = spectrocloud.get_cloudaccount_maas(name=var["cluster_cloud_account_name"])
profile = spectrocloud.get_cluster_profile(name=var["cluster_cluster_profile_name"])
bsl = spectrocloud.get_backup_storage_location(name=var["backup_storage_location_name"])
cluster = spectrocloud.ClusterMaas("cluster",
tags=[
"dev",
"department:devops",
"owner:bob",
],
cloud_account_id=account.id,
cloud_config={
"domain": "maas.mycompany.com",
},
cluster_profiles=[{
"id": profile.id,
}],
backup_policy={
"schedule": "0 0 * * SUN",
"backup_location_id": bsl.id,
"prefix": "prod-backup",
"expiry_in_hour": 7200,
"include_disks": True,
"include_cluster_resources": True,
},
scan_policy={
"configuration_scan_schedule": "0 0 * * SUN",
"penetration_scan_schedule": "0 0 * * SUN",
"conformance_scan_schedule": "0 0 1 * *",
},
machine_pools=[
{
"name": "control-plane",
"count": 1,
"control_plane": True,
"instance_type": {
"min_cpu": 8,
"min_memory_mb": 16000,
},
"placement": {
"resource_pool": "Production-Compute-Pool-1",
},
},
{
"name": "worker-basic",
"count": 1,
"instance_type": {
"min_cpu": 8,
"min_memory_mb": 32000,
},
"placement": {
"resource_pool": "Production-Compute-Pool-2",
},
},
])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/spectrocloud/spectrocloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
account, err := spectrocloud.LookupCloudaccountMaas(ctx, &spectrocloud.LookupCloudaccountMaasArgs{
Name: pulumi.StringRef(_var.Cluster_cloud_account_name),
}, nil)
if err != nil {
return err
}
profile, err := spectrocloud.LookupClusterProfile(ctx, &spectrocloud.LookupClusterProfileArgs{
Name: pulumi.StringRef(_var.Cluster_cluster_profile_name),
}, nil)
if err != nil {
return err
}
bsl, err := spectrocloud.LookupBackupStorageLocation(ctx, &spectrocloud.LookupBackupStorageLocationArgs{
Name: pulumi.StringRef(_var.Backup_storage_location_name),
}, nil)
if err != nil {
return err
}
_, err = spectrocloud.NewClusterMaas(ctx, "cluster", &spectrocloud.ClusterMaasArgs{
Tags: pulumi.StringArray{
pulumi.String("dev"),
pulumi.String("department:devops"),
pulumi.String("owner:bob"),
},
CloudAccountId: pulumi.String(account.Id),
CloudConfig: &spectrocloud.ClusterMaasCloudConfigArgs{
Domain: pulumi.String("maas.mycompany.com"),
},
ClusterProfiles: spectrocloud.ClusterMaasClusterProfileArray{
&spectrocloud.ClusterMaasClusterProfileArgs{
Id: pulumi.String(profile.Id),
},
},
BackupPolicy: &spectrocloud.ClusterMaasBackupPolicyArgs{
Schedule: pulumi.String("0 0 * * SUN"),
BackupLocationId: pulumi.String(bsl.Id),
Prefix: pulumi.String("prod-backup"),
ExpiryInHour: pulumi.Float64(7200),
IncludeDisks: pulumi.Bool(true),
IncludeClusterResources: pulumi.Bool(true),
},
ScanPolicy: &spectrocloud.ClusterMaasScanPolicyArgs{
ConfigurationScanSchedule: pulumi.String("0 0 * * SUN"),
PenetrationScanSchedule: pulumi.String("0 0 * * SUN"),
ConformanceScanSchedule: pulumi.String("0 0 1 * *"),
},
MachinePools: spectrocloud.ClusterMaasMachinePoolArray{
&spectrocloud.ClusterMaasMachinePoolArgs{
Name: pulumi.String("control-plane"),
Count: pulumi.Float64(1),
ControlPlane: pulumi.Bool(true),
InstanceType: &spectrocloud.ClusterMaasMachinePoolInstanceTypeArgs{
MinCpu: pulumi.Float64(8),
MinMemoryMb: pulumi.Float64(16000),
},
Placement: &spectrocloud.ClusterMaasMachinePoolPlacementArgs{
ResourcePool: pulumi.String("Production-Compute-Pool-1"),
},
},
&spectrocloud.ClusterMaasMachinePoolArgs{
Name: pulumi.String("worker-basic"),
Count: pulumi.Float64(1),
InstanceType: &spectrocloud.ClusterMaasMachinePoolInstanceTypeArgs{
MinCpu: pulumi.Float64(8),
MinMemoryMb: pulumi.Float64(32000),
},
Placement: &spectrocloud.ClusterMaasMachinePoolPlacementArgs{
ResourcePool: pulumi.String("Production-Compute-Pool-2"),
},
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Spectrocloud = Pulumi.Spectrocloud;
return await Deployment.RunAsync(() =>
{
var account = Spectrocloud.GetCloudaccountMaas.Invoke(new()
{
Name = @var.Cluster_cloud_account_name,
});
var profile = Spectrocloud.GetClusterProfile.Invoke(new()
{
Name = @var.Cluster_cluster_profile_name,
});
var bsl = Spectrocloud.GetBackupStorageLocation.Invoke(new()
{
Name = @var.Backup_storage_location_name,
});
var cluster = new Spectrocloud.ClusterMaas("cluster", new()
{
Tags = new[]
{
"dev",
"department:devops",
"owner:bob",
},
CloudAccountId = account.Apply(getCloudaccountMaasResult => getCloudaccountMaasResult.Id),
CloudConfig = new Spectrocloud.Inputs.ClusterMaasCloudConfigArgs
{
Domain = "maas.mycompany.com",
},
ClusterProfiles = new[]
{
new Spectrocloud.Inputs.ClusterMaasClusterProfileArgs
{
Id = profile.Apply(getClusterProfileResult => getClusterProfileResult.Id),
},
},
BackupPolicy = new Spectrocloud.Inputs.ClusterMaasBackupPolicyArgs
{
Schedule = "0 0 * * SUN",
BackupLocationId = bsl.Apply(getBackupStorageLocationResult => getBackupStorageLocationResult.Id),
Prefix = "prod-backup",
ExpiryInHour = 7200,
IncludeDisks = true,
IncludeClusterResources = true,
},
ScanPolicy = new Spectrocloud.Inputs.ClusterMaasScanPolicyArgs
{
ConfigurationScanSchedule = "0 0 * * SUN",
PenetrationScanSchedule = "0 0 * * SUN",
ConformanceScanSchedule = "0 0 1 * *",
},
MachinePools = new[]
{
new Spectrocloud.Inputs.ClusterMaasMachinePoolArgs
{
Name = "control-plane",
Count = 1,
ControlPlane = true,
InstanceType = new Spectrocloud.Inputs.ClusterMaasMachinePoolInstanceTypeArgs
{
MinCpu = 8,
MinMemoryMb = 16000,
},
Placement = new Spectrocloud.Inputs.ClusterMaasMachinePoolPlacementArgs
{
ResourcePool = "Production-Compute-Pool-1",
},
},
new Spectrocloud.Inputs.ClusterMaasMachinePoolArgs
{
Name = "worker-basic",
Count = 1,
InstanceType = new Spectrocloud.Inputs.ClusterMaasMachinePoolInstanceTypeArgs
{
MinCpu = 8,
MinMemoryMb = 32000,
},
Placement = new Spectrocloud.Inputs.ClusterMaasMachinePoolPlacementArgs
{
ResourcePool = "Production-Compute-Pool-2",
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.spectrocloud.SpectrocloudFunctions;
import com.pulumi.spectrocloud.inputs.GetCloudaccountMaasArgs;
import com.pulumi.spectrocloud.inputs.GetClusterProfileArgs;
import com.pulumi.spectrocloud.inputs.GetBackupStorageLocationArgs;
import com.pulumi.spectrocloud.ClusterMaas;
import com.pulumi.spectrocloud.ClusterMaasArgs;
import com.pulumi.spectrocloud.inputs.ClusterMaasCloudConfigArgs;
import com.pulumi.spectrocloud.inputs.ClusterMaasClusterProfileArgs;
import com.pulumi.spectrocloud.inputs.ClusterMaasBackupPolicyArgs;
import com.pulumi.spectrocloud.inputs.ClusterMaasScanPolicyArgs;
import com.pulumi.spectrocloud.inputs.ClusterMaasMachinePoolArgs;
import com.pulumi.spectrocloud.inputs.ClusterMaasMachinePoolInstanceTypeArgs;
import com.pulumi.spectrocloud.inputs.ClusterMaasMachinePoolPlacementArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var account = SpectrocloudFunctions.getCloudaccountMaas(GetCloudaccountMaasArgs.builder()
.name(var_.cluster_cloud_account_name())
.build());
final var profile = SpectrocloudFunctions.getClusterProfile(GetClusterProfileArgs.builder()
.name(var_.cluster_cluster_profile_name())
.build());
final var bsl = SpectrocloudFunctions.getBackupStorageLocation(GetBackupStorageLocationArgs.builder()
.name(var_.backup_storage_location_name())
.build());
var cluster = new ClusterMaas("cluster", ClusterMaasArgs.builder()
.tags(
"dev",
"department:devops",
"owner:bob")
.cloudAccountId(account.applyValue(getCloudaccountMaasResult -> getCloudaccountMaasResult.id()))
.cloudConfig(ClusterMaasCloudConfigArgs.builder()
.domain("maas.mycompany.com")
.build())
.clusterProfiles(ClusterMaasClusterProfileArgs.builder()
.id(profile.applyValue(getClusterProfileResult -> getClusterProfileResult.id()))
.build())
.backupPolicy(ClusterMaasBackupPolicyArgs.builder()
.schedule("0 0 * * SUN")
.backupLocationId(bsl.applyValue(getBackupStorageLocationResult -> getBackupStorageLocationResult.id()))
.prefix("prod-backup")
.expiryInHour(7200)
.includeDisks(true)
.includeClusterResources(true)
.build())
.scanPolicy(ClusterMaasScanPolicyArgs.builder()
.configurationScanSchedule("0 0 * * SUN")
.penetrationScanSchedule("0 0 * * SUN")
.conformanceScanSchedule("0 0 1 * *")
.build())
.machinePools(
ClusterMaasMachinePoolArgs.builder()
.name("control-plane")
.count(1)
.controlPlane(true)
.instanceType(ClusterMaasMachinePoolInstanceTypeArgs.builder()
.minCpu(8)
.minMemoryMb(16000)
.build())
.placement(ClusterMaasMachinePoolPlacementArgs.builder()
.resourcePool("Production-Compute-Pool-1")
.build())
.build(),
ClusterMaasMachinePoolArgs.builder()
.name("worker-basic")
.count(1)
.instanceType(ClusterMaasMachinePoolInstanceTypeArgs.builder()
.minCpu(8)
.minMemoryMb(32000)
.build())
.placement(ClusterMaasMachinePoolPlacementArgs.builder()
.resourcePool("Production-Compute-Pool-2")
.build())
.build())
.build());
}
}
resources:
cluster:
type: spectrocloud:ClusterMaas
properties:
tags:
- dev
- department:devops
- owner:bob
cloudAccountId: ${account.id}
cloudConfig:
domain: maas.mycompany.com
clusterProfiles:
- id: ${profile.id}
backupPolicy:
schedule: 0 0 * * SUN
backupLocationId: ${bsl.id}
prefix: prod-backup
expiryInHour: 7200
includeDisks: true
includeClusterResources: true
scanPolicy:
configurationScanSchedule: 0 0 * * SUN
penetrationScanSchedule: 0 0 * * SUN
conformanceScanSchedule: 0 0 1 * *
machinePools:
- name: control-plane
count: 1
controlPlane: true
instanceType:
minCpu: 8
minMemoryMb: 16000
placement:
resourcePool: Production-Compute-Pool-1
- name: worker-basic
count: 1
instanceType:
minCpu: 8
minMemoryMb: 32000
placement:
resourcePool: Production-Compute-Pool-2
variables:
account:
fn::invoke:
function: spectrocloud:getCloudaccountMaas
arguments:
name: ${var.cluster_cloud_account_name}
profile:
fn::invoke:
function: spectrocloud:getClusterProfile
arguments:
name: ${var.cluster_cluster_profile_name}
bsl:
fn::invoke:
function: spectrocloud:getBackupStorageLocation
arguments:
name: ${var.backup_storage_location_name}
Create ClusterMaas Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ClusterMaas(name: string, args: ClusterMaasArgs, opts?: CustomResourceOptions);
@overload
def ClusterMaas(resource_name: str,
args: ClusterMaasArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ClusterMaas(resource_name: str,
opts: Optional[ResourceOptions] = None,
cloud_config: Optional[ClusterMaasCloudConfigArgs] = None,
machine_pools: Optional[Sequence[ClusterMaasMachinePoolArgs]] = None,
host_configs: Optional[Sequence[ClusterMaasHostConfigArgs]] = None,
context: Optional[str] = None,
cluster_maas_id: Optional[str] = None,
cluster_meta_attribute: Optional[str] = None,
cluster_profiles: Optional[Sequence[ClusterMaasClusterProfileArgs]] = None,
cluster_rbac_bindings: Optional[Sequence[ClusterMaasClusterRbacBindingArgs]] = None,
location_configs: Optional[Sequence[ClusterMaasLocationConfigArgs]] = None,
description: Optional[str] = None,
force_delete: Optional[bool] = None,
force_delete_delay: Optional[float] = None,
cloud_account_id: Optional[str] = None,
apply_setting: Optional[str] = None,
os_patch_on_boot: Optional[bool] = None,
name: Optional[str] = None,
namespaces: Optional[Sequence[ClusterMaasNamespaceArgs]] = None,
os_patch_after: Optional[str] = None,
backup_policy: Optional[ClusterMaasBackupPolicyArgs] = None,
os_patch_schedule: Optional[str] = None,
pause_agent_upgrades: Optional[str] = None,
review_repave_state: Optional[str] = None,
scan_policy: Optional[ClusterMaasScanPolicyArgs] = None,
skip_completion: Optional[bool] = None,
tags: Optional[Sequence[str]] = None,
timeouts: Optional[ClusterMaasTimeoutsArgs] = None)
func NewClusterMaas(ctx *Context, name string, args ClusterMaasArgs, opts ...ResourceOption) (*ClusterMaas, error)
public ClusterMaas(string name, ClusterMaasArgs args, CustomResourceOptions? opts = null)
public ClusterMaas(String name, ClusterMaasArgs args)
public ClusterMaas(String name, ClusterMaasArgs args, CustomResourceOptions options)
type: spectrocloud:ClusterMaas
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ClusterMaasArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ClusterMaasArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ClusterMaasArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ClusterMaasArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ClusterMaasArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var clusterMaasResource = new Spectrocloud.ClusterMaas("clusterMaasResource", new()
{
CloudConfig = new Spectrocloud.Inputs.ClusterMaasCloudConfigArgs
{
Domain = "string",
},
MachinePools = new[]
{
new Spectrocloud.Inputs.ClusterMaasMachinePoolArgs
{
Count = 0,
Placement = new Spectrocloud.Inputs.ClusterMaasMachinePoolPlacementArgs
{
ResourcePool = "string",
Id = "string",
},
Name = "string",
InstanceType = new Spectrocloud.Inputs.ClusterMaasMachinePoolInstanceTypeArgs
{
MinCpu = 0,
MinMemoryMb = 0,
},
Max = 0,
ControlPlaneAsWorker = false,
AdditionalLabels =
{
{ "string", "string" },
},
Min = 0,
ControlPlane = false,
NodeRepaveInterval = 0,
NodeTags = new[]
{
"string",
},
Nodes = new[]
{
new Spectrocloud.Inputs.ClusterMaasMachinePoolNodeArgs
{
Action = "string",
NodeId = "string",
},
},
Azs = new[]
{
"string",
},
Taints = new[]
{
new Spectrocloud.Inputs.ClusterMaasMachinePoolTaintArgs
{
Effect = "string",
Key = "string",
Value = "string",
},
},
UpdateStrategy = "string",
},
},
HostConfigs = new[]
{
new Spectrocloud.Inputs.ClusterMaasHostConfigArgs
{
ExternalTrafficPolicy = "string",
HostEndpointType = "string",
IngressHost = "string",
LoadBalancerSourceRanges = "string",
},
},
Context = "string",
ClusterMaasId = "string",
ClusterMetaAttribute = "string",
ClusterProfiles = new[]
{
new Spectrocloud.Inputs.ClusterMaasClusterProfileArgs
{
Id = "string",
Packs = new[]
{
new Spectrocloud.Inputs.ClusterMaasClusterProfilePackArgs
{
Name = "string",
Manifests = new[]
{
new Spectrocloud.Inputs.ClusterMaasClusterProfilePackManifestArgs
{
Content = "string",
Name = "string",
Uid = "string",
},
},
RegistryUid = "string",
Tag = "string",
Type = "string",
Uid = "string",
Values = "string",
},
},
Variables =
{
{ "string", "string" },
},
},
},
ClusterRbacBindings = new[]
{
new Spectrocloud.Inputs.ClusterMaasClusterRbacBindingArgs
{
Type = "string",
Namespace = "string",
Role =
{
{ "string", "string" },
},
Subjects = new[]
{
new Spectrocloud.Inputs.ClusterMaasClusterRbacBindingSubjectArgs
{
Name = "string",
Type = "string",
Namespace = "string",
},
},
},
},
LocationConfigs = new[]
{
new Spectrocloud.Inputs.ClusterMaasLocationConfigArgs
{
Latitude = 0,
Longitude = 0,
CountryCode = "string",
CountryName = "string",
RegionCode = "string",
RegionName = "string",
},
},
Description = "string",
ForceDelete = false,
ForceDeleteDelay = 0,
CloudAccountId = "string",
ApplySetting = "string",
OsPatchOnBoot = false,
Name = "string",
Namespaces = new[]
{
new Spectrocloud.Inputs.ClusterMaasNamespaceArgs
{
Name = "string",
ResourceAllocation =
{
{ "string", "string" },
},
ImagesBlacklists = new[]
{
"string",
},
},
},
OsPatchAfter = "string",
BackupPolicy = new Spectrocloud.Inputs.ClusterMaasBackupPolicyArgs
{
BackupLocationId = "string",
ExpiryInHour = 0,
Prefix = "string",
Schedule = "string",
ClusterUids = new[]
{
"string",
},
IncludeAllClusters = false,
IncludeClusterResources = false,
IncludeClusterResourcesMode = "string",
IncludeDisks = false,
Namespaces = new[]
{
"string",
},
},
OsPatchSchedule = "string",
PauseAgentUpgrades = "string",
ReviewRepaveState = "string",
ScanPolicy = new Spectrocloud.Inputs.ClusterMaasScanPolicyArgs
{
ConfigurationScanSchedule = "string",
ConformanceScanSchedule = "string",
PenetrationScanSchedule = "string",
},
SkipCompletion = false,
Tags = new[]
{
"string",
},
Timeouts = new Spectrocloud.Inputs.ClusterMaasTimeoutsArgs
{
Create = "string",
Delete = "string",
Update = "string",
},
});
example, err := spectrocloud.NewClusterMaas(ctx, "clusterMaasResource", &spectrocloud.ClusterMaasArgs{
CloudConfig: &.ClusterMaasCloudConfigArgs{
Domain: pulumi.String("string"),
},
MachinePools: .ClusterMaasMachinePoolArray{
&.ClusterMaasMachinePoolArgs{
Count: pulumi.Float64(0),
Placement: &.ClusterMaasMachinePoolPlacementArgs{
ResourcePool: pulumi.String("string"),
Id: pulumi.String("string"),
},
Name: pulumi.String("string"),
InstanceType: &.ClusterMaasMachinePoolInstanceTypeArgs{
MinCpu: pulumi.Float64(0),
MinMemoryMb: pulumi.Float64(0),
},
Max: pulumi.Float64(0),
ControlPlaneAsWorker: pulumi.Bool(false),
AdditionalLabels: pulumi.StringMap{
"string": pulumi.String("string"),
},
Min: pulumi.Float64(0),
ControlPlane: pulumi.Bool(false),
NodeRepaveInterval: pulumi.Float64(0),
NodeTags: pulumi.StringArray{
pulumi.String("string"),
},
Nodes: .ClusterMaasMachinePoolNodeArray{
&.ClusterMaasMachinePoolNodeArgs{
Action: pulumi.String("string"),
NodeId: pulumi.String("string"),
},
},
Azs: pulumi.StringArray{
pulumi.String("string"),
},
Taints: .ClusterMaasMachinePoolTaintArray{
&.ClusterMaasMachinePoolTaintArgs{
Effect: pulumi.String("string"),
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
UpdateStrategy: pulumi.String("string"),
},
},
HostConfigs: .ClusterMaasHostConfigArray{
&.ClusterMaasHostConfigArgs{
ExternalTrafficPolicy: pulumi.String("string"),
HostEndpointType: pulumi.String("string"),
IngressHost: pulumi.String("string"),
LoadBalancerSourceRanges: pulumi.String("string"),
},
},
Context: pulumi.String("string"),
ClusterMaasId: pulumi.String("string"),
ClusterMetaAttribute: pulumi.String("string"),
ClusterProfiles: .ClusterMaasClusterProfileArray{
&.ClusterMaasClusterProfileArgs{
Id: pulumi.String("string"),
Packs: .ClusterMaasClusterProfilePackArray{
&.ClusterMaasClusterProfilePackArgs{
Name: pulumi.String("string"),
Manifests: .ClusterMaasClusterProfilePackManifestArray{
&.ClusterMaasClusterProfilePackManifestArgs{
Content: pulumi.String("string"),
Name: pulumi.String("string"),
Uid: pulumi.String("string"),
},
},
RegistryUid: pulumi.String("string"),
Tag: pulumi.String("string"),
Type: pulumi.String("string"),
Uid: pulumi.String("string"),
Values: pulumi.String("string"),
},
},
Variables: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
},
ClusterRbacBindings: .ClusterMaasClusterRbacBindingArray{
&.ClusterMaasClusterRbacBindingArgs{
Type: pulumi.String("string"),
Namespace: pulumi.String("string"),
Role: pulumi.StringMap{
"string": pulumi.String("string"),
},
Subjects: .ClusterMaasClusterRbacBindingSubjectArray{
&.ClusterMaasClusterRbacBindingSubjectArgs{
Name: pulumi.String("string"),
Type: pulumi.String("string"),
Namespace: pulumi.String("string"),
},
},
},
},
LocationConfigs: .ClusterMaasLocationConfigArray{
&.ClusterMaasLocationConfigArgs{
Latitude: pulumi.Float64(0),
Longitude: pulumi.Float64(0),
CountryCode: pulumi.String("string"),
CountryName: pulumi.String("string"),
RegionCode: pulumi.String("string"),
RegionName: pulumi.String("string"),
},
},
Description: pulumi.String("string"),
ForceDelete: pulumi.Bool(false),
ForceDeleteDelay: pulumi.Float64(0),
CloudAccountId: pulumi.String("string"),
ApplySetting: pulumi.String("string"),
OsPatchOnBoot: pulumi.Bool(false),
Name: pulumi.String("string"),
Namespaces: .ClusterMaasNamespaceArray{
&.ClusterMaasNamespaceArgs{
Name: pulumi.String("string"),
ResourceAllocation: pulumi.StringMap{
"string": pulumi.String("string"),
},
ImagesBlacklists: pulumi.StringArray{
pulumi.String("string"),
},
},
},
OsPatchAfter: pulumi.String("string"),
BackupPolicy: &.ClusterMaasBackupPolicyArgs{
BackupLocationId: pulumi.String("string"),
ExpiryInHour: pulumi.Float64(0),
Prefix: pulumi.String("string"),
Schedule: pulumi.String("string"),
ClusterUids: pulumi.StringArray{
pulumi.String("string"),
},
IncludeAllClusters: pulumi.Bool(false),
IncludeClusterResources: pulumi.Bool(false),
IncludeClusterResourcesMode: pulumi.String("string"),
IncludeDisks: pulumi.Bool(false),
Namespaces: pulumi.StringArray{
pulumi.String("string"),
},
},
OsPatchSchedule: pulumi.String("string"),
PauseAgentUpgrades: pulumi.String("string"),
ReviewRepaveState: pulumi.String("string"),
ScanPolicy: &.ClusterMaasScanPolicyArgs{
ConfigurationScanSchedule: pulumi.String("string"),
ConformanceScanSchedule: pulumi.String("string"),
PenetrationScanSchedule: pulumi.String("string"),
},
SkipCompletion: pulumi.Bool(false),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
Timeouts: &.ClusterMaasTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
var clusterMaasResource = new ClusterMaas("clusterMaasResource", ClusterMaasArgs.builder()
.cloudConfig(ClusterMaasCloudConfigArgs.builder()
.domain("string")
.build())
.machinePools(ClusterMaasMachinePoolArgs.builder()
.count(0)
.placement(ClusterMaasMachinePoolPlacementArgs.builder()
.resourcePool("string")
.id("string")
.build())
.name("string")
.instanceType(ClusterMaasMachinePoolInstanceTypeArgs.builder()
.minCpu(0)
.minMemoryMb(0)
.build())
.max(0)
.controlPlaneAsWorker(false)
.additionalLabels(Map.of("string", "string"))
.min(0)
.controlPlane(false)
.nodeRepaveInterval(0)
.nodeTags("string")
.nodes(ClusterMaasMachinePoolNodeArgs.builder()
.action("string")
.nodeId("string")
.build())
.azs("string")
.taints(ClusterMaasMachinePoolTaintArgs.builder()
.effect("string")
.key("string")
.value("string")
.build())
.updateStrategy("string")
.build())
.hostConfigs(ClusterMaasHostConfigArgs.builder()
.externalTrafficPolicy("string")
.hostEndpointType("string")
.ingressHost("string")
.loadBalancerSourceRanges("string")
.build())
.context("string")
.clusterMaasId("string")
.clusterMetaAttribute("string")
.clusterProfiles(ClusterMaasClusterProfileArgs.builder()
.id("string")
.packs(ClusterMaasClusterProfilePackArgs.builder()
.name("string")
.manifests(ClusterMaasClusterProfilePackManifestArgs.builder()
.content("string")
.name("string")
.uid("string")
.build())
.registryUid("string")
.tag("string")
.type("string")
.uid("string")
.values("string")
.build())
.variables(Map.of("string", "string"))
.build())
.clusterRbacBindings(ClusterMaasClusterRbacBindingArgs.builder()
.type("string")
.namespace("string")
.role(Map.of("string", "string"))
.subjects(ClusterMaasClusterRbacBindingSubjectArgs.builder()
.name("string")
.type("string")
.namespace("string")
.build())
.build())
.locationConfigs(ClusterMaasLocationConfigArgs.builder()
.latitude(0)
.longitude(0)
.countryCode("string")
.countryName("string")
.regionCode("string")
.regionName("string")
.build())
.description("string")
.forceDelete(false)
.forceDeleteDelay(0)
.cloudAccountId("string")
.applySetting("string")
.osPatchOnBoot(false)
.name("string")
.namespaces(ClusterMaasNamespaceArgs.builder()
.name("string")
.resourceAllocation(Map.of("string", "string"))
.imagesBlacklists("string")
.build())
.osPatchAfter("string")
.backupPolicy(ClusterMaasBackupPolicyArgs.builder()
.backupLocationId("string")
.expiryInHour(0)
.prefix("string")
.schedule("string")
.clusterUids("string")
.includeAllClusters(false)
.includeClusterResources(false)
.includeClusterResourcesMode("string")
.includeDisks(false)
.namespaces("string")
.build())
.osPatchSchedule("string")
.pauseAgentUpgrades("string")
.reviewRepaveState("string")
.scanPolicy(ClusterMaasScanPolicyArgs.builder()
.configurationScanSchedule("string")
.conformanceScanSchedule("string")
.penetrationScanSchedule("string")
.build())
.skipCompletion(false)
.tags("string")
.timeouts(ClusterMaasTimeoutsArgs.builder()
.create("string")
.delete("string")
.update("string")
.build())
.build());
cluster_maas_resource = spectrocloud.ClusterMaas("clusterMaasResource",
cloud_config={
"domain": "string",
},
machine_pools=[{
"count": 0,
"placement": {
"resource_pool": "string",
"id": "string",
},
"name": "string",
"instance_type": {
"min_cpu": 0,
"min_memory_mb": 0,
},
"max": 0,
"control_plane_as_worker": False,
"additional_labels": {
"string": "string",
},
"min": 0,
"control_plane": False,
"node_repave_interval": 0,
"node_tags": ["string"],
"nodes": [{
"action": "string",
"node_id": "string",
}],
"azs": ["string"],
"taints": [{
"effect": "string",
"key": "string",
"value": "string",
}],
"update_strategy": "string",
}],
host_configs=[{
"external_traffic_policy": "string",
"host_endpoint_type": "string",
"ingress_host": "string",
"load_balancer_source_ranges": "string",
}],
context="string",
cluster_maas_id="string",
cluster_meta_attribute="string",
cluster_profiles=[{
"id": "string",
"packs": [{
"name": "string",
"manifests": [{
"content": "string",
"name": "string",
"uid": "string",
}],
"registry_uid": "string",
"tag": "string",
"type": "string",
"uid": "string",
"values": "string",
}],
"variables": {
"string": "string",
},
}],
cluster_rbac_bindings=[{
"type": "string",
"namespace": "string",
"role": {
"string": "string",
},
"subjects": [{
"name": "string",
"type": "string",
"namespace": "string",
}],
}],
location_configs=[{
"latitude": 0,
"longitude": 0,
"country_code": "string",
"country_name": "string",
"region_code": "string",
"region_name": "string",
}],
description="string",
force_delete=False,
force_delete_delay=0,
cloud_account_id="string",
apply_setting="string",
os_patch_on_boot=False,
name="string",
namespaces=[{
"name": "string",
"resource_allocation": {
"string": "string",
},
"images_blacklists": ["string"],
}],
os_patch_after="string",
backup_policy={
"backup_location_id": "string",
"expiry_in_hour": 0,
"prefix": "string",
"schedule": "string",
"cluster_uids": ["string"],
"include_all_clusters": False,
"include_cluster_resources": False,
"include_cluster_resources_mode": "string",
"include_disks": False,
"namespaces": ["string"],
},
os_patch_schedule="string",
pause_agent_upgrades="string",
review_repave_state="string",
scan_policy={
"configuration_scan_schedule": "string",
"conformance_scan_schedule": "string",
"penetration_scan_schedule": "string",
},
skip_completion=False,
tags=["string"],
timeouts={
"create": "string",
"delete": "string",
"update": "string",
})
const clusterMaasResource = new spectrocloud.ClusterMaas("clusterMaasResource", {
cloudConfig: {
domain: "string",
},
machinePools: [{
count: 0,
placement: {
resourcePool: "string",
id: "string",
},
name: "string",
instanceType: {
minCpu: 0,
minMemoryMb: 0,
},
max: 0,
controlPlaneAsWorker: false,
additionalLabels: {
string: "string",
},
min: 0,
controlPlane: false,
nodeRepaveInterval: 0,
nodeTags: ["string"],
nodes: [{
action: "string",
nodeId: "string",
}],
azs: ["string"],
taints: [{
effect: "string",
key: "string",
value: "string",
}],
updateStrategy: "string",
}],
hostConfigs: [{
externalTrafficPolicy: "string",
hostEndpointType: "string",
ingressHost: "string",
loadBalancerSourceRanges: "string",
}],
context: "string",
clusterMaasId: "string",
clusterMetaAttribute: "string",
clusterProfiles: [{
id: "string",
packs: [{
name: "string",
manifests: [{
content: "string",
name: "string",
uid: "string",
}],
registryUid: "string",
tag: "string",
type: "string",
uid: "string",
values: "string",
}],
variables: {
string: "string",
},
}],
clusterRbacBindings: [{
type: "string",
namespace: "string",
role: {
string: "string",
},
subjects: [{
name: "string",
type: "string",
namespace: "string",
}],
}],
locationConfigs: [{
latitude: 0,
longitude: 0,
countryCode: "string",
countryName: "string",
regionCode: "string",
regionName: "string",
}],
description: "string",
forceDelete: false,
forceDeleteDelay: 0,
cloudAccountId: "string",
applySetting: "string",
osPatchOnBoot: false,
name: "string",
namespaces: [{
name: "string",
resourceAllocation: {
string: "string",
},
imagesBlacklists: ["string"],
}],
osPatchAfter: "string",
backupPolicy: {
backupLocationId: "string",
expiryInHour: 0,
prefix: "string",
schedule: "string",
clusterUids: ["string"],
includeAllClusters: false,
includeClusterResources: false,
includeClusterResourcesMode: "string",
includeDisks: false,
namespaces: ["string"],
},
osPatchSchedule: "string",
pauseAgentUpgrades: "string",
reviewRepaveState: "string",
scanPolicy: {
configurationScanSchedule: "string",
conformanceScanSchedule: "string",
penetrationScanSchedule: "string",
},
skipCompletion: false,
tags: ["string"],
timeouts: {
create: "string",
"delete": "string",
update: "string",
},
});
type: spectrocloud:ClusterMaas
properties:
applySetting: string
backupPolicy:
backupLocationId: string
clusterUids:
- string
expiryInHour: 0
includeAllClusters: false
includeClusterResources: false
includeClusterResourcesMode: string
includeDisks: false
namespaces:
- string
prefix: string
schedule: string
cloudAccountId: string
cloudConfig:
domain: string
clusterMaasId: string
clusterMetaAttribute: string
clusterProfiles:
- id: string
packs:
- manifests:
- content: string
name: string
uid: string
name: string
registryUid: string
tag: string
type: string
uid: string
values: string
variables:
string: string
clusterRbacBindings:
- namespace: string
role:
string: string
subjects:
- name: string
namespace: string
type: string
type: string
context: string
description: string
forceDelete: false
forceDeleteDelay: 0
hostConfigs:
- externalTrafficPolicy: string
hostEndpointType: string
ingressHost: string
loadBalancerSourceRanges: string
locationConfigs:
- countryCode: string
countryName: string
latitude: 0
longitude: 0
regionCode: string
regionName: string
machinePools:
- additionalLabels:
string: string
azs:
- string
controlPlane: false
controlPlaneAsWorker: false
count: 0
instanceType:
minCpu: 0
minMemoryMb: 0
max: 0
min: 0
name: string
nodeRepaveInterval: 0
nodeTags:
- string
nodes:
- action: string
nodeId: string
placement:
id: string
resourcePool: string
taints:
- effect: string
key: string
value: string
updateStrategy: string
name: string
namespaces:
- imagesBlacklists:
- string
name: string
resourceAllocation:
string: string
osPatchAfter: string
osPatchOnBoot: false
osPatchSchedule: string
pauseAgentUpgrades: string
reviewRepaveState: string
scanPolicy:
configurationScanSchedule: string
conformanceScanSchedule: string
penetrationScanSchedule: string
skipCompletion: false
tags:
- string
timeouts:
create: string
delete: string
update: string
ClusterMaas Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ClusterMaas resource accepts the following input properties:
- Cloud
Config ClusterMaas Cloud Config - Machine
Pools List<ClusterMaas Machine Pool> - Apply
Setting string - The setting to apply the cluster profile.
DownloadAndInstall
will download and install packs in one action.DownloadAndInstallLater
will only download artifact and postpone install for later. Default value isDownloadAndInstall
. - Backup
Policy ClusterMaas Backup Policy - The backup policy for the cluster. If not specified, no backups will be taken.
- Cloud
Account stringId - ID of the Maas cloud account used for the cluster. This cloud account must be of type
maas
. - Cluster
Maas stringId - The ID of this resource.
- Cluster
Meta stringAttribute cluster_meta_attribute
can be used to set additional cluster metadata information, eg{'nic_name': 'test', 'env': 'stage'}
- Cluster
Profiles List<ClusterMaas Cluster Profile> - Cluster
Rbac List<ClusterBindings Maas Cluster Rbac Binding> - The RBAC binding for the cluster.
- Context string
- The context of the MAAS configuration. Allowed values are
project
ortenant
. Default isproject
. If theproject
context is specified, the project name will sourced from the provider configuration parameterproject_name
. - Description string
- The description of the cluster. Default value is empty string.
- Force
Delete bool - If set to
true
, the cluster will be force deleted and user has to manually clean up the provisioned cloud resources. - Force
Delete doubleDelay - Delay duration in minutes to before invoking cluster force delete. Default and minimum is 20.
- Host
Configs List<ClusterMaas Host Config> - The host configuration for the cluster.
- Location
Configs List<ClusterMaas Location Config> - Name string
- The name of the cluster.
- Namespaces
List<Cluster
Maas Namespace> - The namespaces for the cluster.
- Os
Patch stringAfter - The date and time after which to patch the cluster. Prefix the time value with the respective RFC. Ex:
RFC3339: 2006-01-02T15:04:05Z07:00
- Os
Patch boolOn Boot - Whether to apply OS patch on boot. Default is
false
. - Os
Patch stringSchedule - Cron schedule for OS patching. This must be in the form of
0 0 * * *
. - Pause
Agent stringUpgrades - The pause agent upgrades setting allows to control the automatic upgrade of the Palette component and agent for an individual cluster. The default value is
unlock
, meaning upgrades occur automatically. Setting it tolock
pauses automatic agent upgrades for the cluster. - Review
Repave stringState - To authorize the cluster repave, set the value to
Approved
for approval and""
to decline. Default value is""
. - Scan
Policy ClusterMaas Scan Policy - The scan policy for the cluster.
- Skip
Completion bool - If
true
, the cluster will be created asynchronously. Default value isfalse
. - List<string>
- A list of tags to be applied to the cluster. Tags must be in the form of
key:value
. - Timeouts
Cluster
Maas Timeouts
- Cloud
Config ClusterMaas Cloud Config Args - Machine
Pools []ClusterMaas Machine Pool Args - Apply
Setting string - The setting to apply the cluster profile.
DownloadAndInstall
will download and install packs in one action.DownloadAndInstallLater
will only download artifact and postpone install for later. Default value isDownloadAndInstall
. - Backup
Policy ClusterMaas Backup Policy Args - The backup policy for the cluster. If not specified, no backups will be taken.
- Cloud
Account stringId - ID of the Maas cloud account used for the cluster. This cloud account must be of type
maas
. - Cluster
Maas stringId - The ID of this resource.
- Cluster
Meta stringAttribute cluster_meta_attribute
can be used to set additional cluster metadata information, eg{'nic_name': 'test', 'env': 'stage'}
- Cluster
Profiles []ClusterMaas Cluster Profile Args - Cluster
Rbac []ClusterBindings Maas Cluster Rbac Binding Args - The RBAC binding for the cluster.
- Context string
- The context of the MAAS configuration. Allowed values are
project
ortenant
. Default isproject
. If theproject
context is specified, the project name will sourced from the provider configuration parameterproject_name
. - Description string
- The description of the cluster. Default value is empty string.
- Force
Delete bool - If set to
true
, the cluster will be force deleted and user has to manually clean up the provisioned cloud resources. - Force
Delete float64Delay - Delay duration in minutes to before invoking cluster force delete. Default and minimum is 20.
- Host
Configs []ClusterMaas Host Config Args - The host configuration for the cluster.
- Location
Configs []ClusterMaas Location Config Args - Name string
- The name of the cluster.
- Namespaces
[]Cluster
Maas Namespace Args - The namespaces for the cluster.
- Os
Patch stringAfter - The date and time after which to patch the cluster. Prefix the time value with the respective RFC. Ex:
RFC3339: 2006-01-02T15:04:05Z07:00
- Os
Patch boolOn Boot - Whether to apply OS patch on boot. Default is
false
. - Os
Patch stringSchedule - Cron schedule for OS patching. This must be in the form of
0 0 * * *
. - Pause
Agent stringUpgrades - The pause agent upgrades setting allows to control the automatic upgrade of the Palette component and agent for an individual cluster. The default value is
unlock
, meaning upgrades occur automatically. Setting it tolock
pauses automatic agent upgrades for the cluster. - Review
Repave stringState - To authorize the cluster repave, set the value to
Approved
for approval and""
to decline. Default value is""
. - Scan
Policy ClusterMaas Scan Policy Args - The scan policy for the cluster.
- Skip
Completion bool - If
true
, the cluster will be created asynchronously. Default value isfalse
. - []string
- A list of tags to be applied to the cluster. Tags must be in the form of
key:value
. - Timeouts
Cluster
Maas Timeouts Args
- cloud
Config ClusterMaas Cloud Config - machine
Pools List<ClusterMaas Machine Pool> - apply
Setting String - The setting to apply the cluster profile.
DownloadAndInstall
will download and install packs in one action.DownloadAndInstallLater
will only download artifact and postpone install for later. Default value isDownloadAndInstall
. - backup
Policy ClusterMaas Backup Policy - The backup policy for the cluster. If not specified, no backups will be taken.
- cloud
Account StringId - ID of the Maas cloud account used for the cluster. This cloud account must be of type
maas
. - cluster
Maas StringId - The ID of this resource.
- cluster
Meta StringAttribute cluster_meta_attribute
can be used to set additional cluster metadata information, eg{'nic_name': 'test', 'env': 'stage'}
- cluster
Profiles List<ClusterMaas Cluster Profile> - cluster
Rbac List<ClusterBindings Maas Cluster Rbac Binding> - The RBAC binding for the cluster.
- context String
- The context of the MAAS configuration. Allowed values are
project
ortenant
. Default isproject
. If theproject
context is specified, the project name will sourced from the provider configuration parameterproject_name
. - description String
- The description of the cluster. Default value is empty string.
- force
Delete Boolean - If set to
true
, the cluster will be force deleted and user has to manually clean up the provisioned cloud resources. - force
Delete DoubleDelay - Delay duration in minutes to before invoking cluster force delete. Default and minimum is 20.
- host
Configs List<ClusterMaas Host Config> - The host configuration for the cluster.
- location
Configs List<ClusterMaas Location Config> - name String
- The name of the cluster.
- namespaces
List<Cluster
Maas Namespace> - The namespaces for the cluster.
- os
Patch StringAfter - The date and time after which to patch the cluster. Prefix the time value with the respective RFC. Ex:
RFC3339: 2006-01-02T15:04:05Z07:00
- os
Patch BooleanOn Boot - Whether to apply OS patch on boot. Default is
false
. - os
Patch StringSchedule - Cron schedule for OS patching. This must be in the form of
0 0 * * *
. - pause
Agent StringUpgrades - The pause agent upgrades setting allows to control the automatic upgrade of the Palette component and agent for an individual cluster. The default value is
unlock
, meaning upgrades occur automatically. Setting it tolock
pauses automatic agent upgrades for the cluster. - review
Repave StringState - To authorize the cluster repave, set the value to
Approved
for approval and""
to decline. Default value is""
. - scan
Policy ClusterMaas Scan Policy - The scan policy for the cluster.
- skip
Completion Boolean - If
true
, the cluster will be created asynchronously. Default value isfalse
. - List<String>
- A list of tags to be applied to the cluster. Tags must be in the form of
key:value
. - timeouts
Cluster
Maas Timeouts
- cloud
Config ClusterMaas Cloud Config - machine
Pools ClusterMaas Machine Pool[] - apply
Setting string - The setting to apply the cluster profile.
DownloadAndInstall
will download and install packs in one action.DownloadAndInstallLater
will only download artifact and postpone install for later. Default value isDownloadAndInstall
. - backup
Policy ClusterMaas Backup Policy - The backup policy for the cluster. If not specified, no backups will be taken.
- cloud
Account stringId - ID of the Maas cloud account used for the cluster. This cloud account must be of type
maas
. - cluster
Maas stringId - The ID of this resource.
- cluster
Meta stringAttribute cluster_meta_attribute
can be used to set additional cluster metadata information, eg{'nic_name': 'test', 'env': 'stage'}
- cluster
Profiles ClusterMaas Cluster Profile[] - cluster
Rbac ClusterBindings Maas Cluster Rbac Binding[] - The RBAC binding for the cluster.
- context string
- The context of the MAAS configuration. Allowed values are
project
ortenant
. Default isproject
. If theproject
context is specified, the project name will sourced from the provider configuration parameterproject_name
. - description string
- The description of the cluster. Default value is empty string.
- force
Delete boolean - If set to
true
, the cluster will be force deleted and user has to manually clean up the provisioned cloud resources. - force
Delete numberDelay - Delay duration in minutes to before invoking cluster force delete. Default and minimum is 20.
- host
Configs ClusterMaas Host Config[] - The host configuration for the cluster.
- location
Configs ClusterMaas Location Config[] - name string
- The name of the cluster.
- namespaces
Cluster
Maas Namespace[] - The namespaces for the cluster.
- os
Patch stringAfter - The date and time after which to patch the cluster. Prefix the time value with the respective RFC. Ex:
RFC3339: 2006-01-02T15:04:05Z07:00
- os
Patch booleanOn Boot - Whether to apply OS patch on boot. Default is
false
. - os
Patch stringSchedule - Cron schedule for OS patching. This must be in the form of
0 0 * * *
. - pause
Agent stringUpgrades - The pause agent upgrades setting allows to control the automatic upgrade of the Palette component and agent for an individual cluster. The default value is
unlock
, meaning upgrades occur automatically. Setting it tolock
pauses automatic agent upgrades for the cluster. - review
Repave stringState - To authorize the cluster repave, set the value to
Approved
for approval and""
to decline. Default value is""
. - scan
Policy ClusterMaas Scan Policy - The scan policy for the cluster.
- skip
Completion boolean - If
true
, the cluster will be created asynchronously. Default value isfalse
. - string[]
- A list of tags to be applied to the cluster. Tags must be in the form of
key:value
. - timeouts
Cluster
Maas Timeouts
- cloud_
config ClusterMaas Cloud Config Args - machine_
pools Sequence[ClusterMaas Machine Pool Args] - apply_
setting str - The setting to apply the cluster profile.
DownloadAndInstall
will download and install packs in one action.DownloadAndInstallLater
will only download artifact and postpone install for later. Default value isDownloadAndInstall
. - backup_
policy ClusterMaas Backup Policy Args - The backup policy for the cluster. If not specified, no backups will be taken.
- cloud_
account_ strid - ID of the Maas cloud account used for the cluster. This cloud account must be of type
maas
. - cluster_
maas_ strid - The ID of this resource.
- cluster_
meta_ strattribute cluster_meta_attribute
can be used to set additional cluster metadata information, eg{'nic_name': 'test', 'env': 'stage'}
- cluster_
profiles Sequence[ClusterMaas Cluster Profile Args] - cluster_
rbac_ Sequence[Clusterbindings Maas Cluster Rbac Binding Args] - The RBAC binding for the cluster.
- context str
- The context of the MAAS configuration. Allowed values are
project
ortenant
. Default isproject
. If theproject
context is specified, the project name will sourced from the provider configuration parameterproject_name
. - description str
- The description of the cluster. Default value is empty string.
- force_
delete bool - If set to
true
, the cluster will be force deleted and user has to manually clean up the provisioned cloud resources. - force_
delete_ floatdelay - Delay duration in minutes to before invoking cluster force delete. Default and minimum is 20.
- host_
configs Sequence[ClusterMaas Host Config Args] - The host configuration for the cluster.
- location_
configs Sequence[ClusterMaas Location Config Args] - name str
- The name of the cluster.
- namespaces
Sequence[Cluster
Maas Namespace Args] - The namespaces for the cluster.
- os_
patch_ strafter - The date and time after which to patch the cluster. Prefix the time value with the respective RFC. Ex:
RFC3339: 2006-01-02T15:04:05Z07:00
- os_
patch_ boolon_ boot - Whether to apply OS patch on boot. Default is
false
. - os_
patch_ strschedule - Cron schedule for OS patching. This must be in the form of
0 0 * * *
. - pause_
agent_ strupgrades - The pause agent upgrades setting allows to control the automatic upgrade of the Palette component and agent for an individual cluster. The default value is
unlock
, meaning upgrades occur automatically. Setting it tolock
pauses automatic agent upgrades for the cluster. - review_
repave_ strstate - To authorize the cluster repave, set the value to
Approved
for approval and""
to decline. Default value is""
. - scan_
policy ClusterMaas Scan Policy Args - The scan policy for the cluster.
- skip_
completion bool - If
true
, the cluster will be created asynchronously. Default value isfalse
. - Sequence[str]
- A list of tags to be applied to the cluster. Tags must be in the form of
key:value
. - timeouts
Cluster
Maas Timeouts Args
- cloud
Config Property Map - machine
Pools List<Property Map> - apply
Setting String - The setting to apply the cluster profile.
DownloadAndInstall
will download and install packs in one action.DownloadAndInstallLater
will only download artifact and postpone install for later. Default value isDownloadAndInstall
. - backup
Policy Property Map - The backup policy for the cluster. If not specified, no backups will be taken.
- cloud
Account StringId - ID of the Maas cloud account used for the cluster. This cloud account must be of type
maas
. - cluster
Maas StringId - The ID of this resource.
- cluster
Meta StringAttribute cluster_meta_attribute
can be used to set additional cluster metadata information, eg{'nic_name': 'test', 'env': 'stage'}
- cluster
Profiles List<Property Map> - cluster
Rbac List<Property Map>Bindings - The RBAC binding for the cluster.
- context String
- The context of the MAAS configuration. Allowed values are
project
ortenant
. Default isproject
. If theproject
context is specified, the project name will sourced from the provider configuration parameterproject_name
. - description String
- The description of the cluster. Default value is empty string.
- force
Delete Boolean - If set to
true
, the cluster will be force deleted and user has to manually clean up the provisioned cloud resources. - force
Delete NumberDelay - Delay duration in minutes to before invoking cluster force delete. Default and minimum is 20.
- host
Configs List<Property Map> - The host configuration for the cluster.
- location
Configs List<Property Map> - name String
- The name of the cluster.
- namespaces List<Property Map>
- The namespaces for the cluster.
- os
Patch StringAfter - The date and time after which to patch the cluster. Prefix the time value with the respective RFC. Ex:
RFC3339: 2006-01-02T15:04:05Z07:00
- os
Patch BooleanOn Boot - Whether to apply OS patch on boot. Default is
false
. - os
Patch StringSchedule - Cron schedule for OS patching. This must be in the form of
0 0 * * *
. - pause
Agent StringUpgrades - The pause agent upgrades setting allows to control the automatic upgrade of the Palette component and agent for an individual cluster. The default value is
unlock
, meaning upgrades occur automatically. Setting it tolock
pauses automatic agent upgrades for the cluster. - review
Repave StringState - To authorize the cluster repave, set the value to
Approved
for approval and""
to decline. Default value is""
. - scan
Policy Property Map - The scan policy for the cluster.
- skip
Completion Boolean - If
true
, the cluster will be created asynchronously. Default value isfalse
. - List<String>
- A list of tags to be applied to the cluster. Tags must be in the form of
key:value
. - timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the ClusterMaas resource produces the following output properties:
- Admin
Kube stringConfig - Admin Kube-config for the cluster. This can be used to connect to the cluster using
kubectl
, With admin privilege. - Cloud
Config stringId - ID of the cloud config used for the cluster. This cloud config must be of type
maas
. - Id string
- The provider-assigned unique ID for this managed resource.
- Kubeconfig string
- Kubeconfig for the cluster. This can be used to connect to the cluster using
kubectl
.
- Admin
Kube stringConfig - Admin Kube-config for the cluster. This can be used to connect to the cluster using
kubectl
, With admin privilege. - Cloud
Config stringId - ID of the cloud config used for the cluster. This cloud config must be of type
maas
. - Id string
- The provider-assigned unique ID for this managed resource.
- Kubeconfig string
- Kubeconfig for the cluster. This can be used to connect to the cluster using
kubectl
.
- admin
Kube StringConfig - Admin Kube-config for the cluster. This can be used to connect to the cluster using
kubectl
, With admin privilege. - cloud
Config StringId - ID of the cloud config used for the cluster. This cloud config must be of type
maas
. - id String
- The provider-assigned unique ID for this managed resource.
- kubeconfig String
- Kubeconfig for the cluster. This can be used to connect to the cluster using
kubectl
.
- admin
Kube stringConfig - Admin Kube-config for the cluster. This can be used to connect to the cluster using
kubectl
, With admin privilege. - cloud
Config stringId - ID of the cloud config used for the cluster. This cloud config must be of type
maas
. - id string
- The provider-assigned unique ID for this managed resource.
- kubeconfig string
- Kubeconfig for the cluster. This can be used to connect to the cluster using
kubectl
.
- admin_
kube_ strconfig - Admin Kube-config for the cluster. This can be used to connect to the cluster using
kubectl
, With admin privilege. - cloud_
config_ strid - ID of the cloud config used for the cluster. This cloud config must be of type
maas
. - id str
- The provider-assigned unique ID for this managed resource.
- kubeconfig str
- Kubeconfig for the cluster. This can be used to connect to the cluster using
kubectl
.
- admin
Kube StringConfig - Admin Kube-config for the cluster. This can be used to connect to the cluster using
kubectl
, With admin privilege. - cloud
Config StringId - ID of the cloud config used for the cluster. This cloud config must be of type
maas
. - id String
- The provider-assigned unique ID for this managed resource.
- kubeconfig String
- Kubeconfig for the cluster. This can be used to connect to the cluster using
kubectl
.
Look up Existing ClusterMaas Resource
Get an existing ClusterMaas resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ClusterMaasState, opts?: CustomResourceOptions): ClusterMaas
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
admin_kube_config: Optional[str] = None,
apply_setting: Optional[str] = None,
backup_policy: Optional[ClusterMaasBackupPolicyArgs] = None,
cloud_account_id: Optional[str] = None,
cloud_config: Optional[ClusterMaasCloudConfigArgs] = None,
cloud_config_id: Optional[str] = None,
cluster_maas_id: Optional[str] = None,
cluster_meta_attribute: Optional[str] = None,
cluster_profiles: Optional[Sequence[ClusterMaasClusterProfileArgs]] = None,
cluster_rbac_bindings: Optional[Sequence[ClusterMaasClusterRbacBindingArgs]] = None,
context: Optional[str] = None,
description: Optional[str] = None,
force_delete: Optional[bool] = None,
force_delete_delay: Optional[float] = None,
host_configs: Optional[Sequence[ClusterMaasHostConfigArgs]] = None,
kubeconfig: Optional[str] = None,
location_configs: Optional[Sequence[ClusterMaasLocationConfigArgs]] = None,
machine_pools: Optional[Sequence[ClusterMaasMachinePoolArgs]] = None,
name: Optional[str] = None,
namespaces: Optional[Sequence[ClusterMaasNamespaceArgs]] = None,
os_patch_after: Optional[str] = None,
os_patch_on_boot: Optional[bool] = None,
os_patch_schedule: Optional[str] = None,
pause_agent_upgrades: Optional[str] = None,
review_repave_state: Optional[str] = None,
scan_policy: Optional[ClusterMaasScanPolicyArgs] = None,
skip_completion: Optional[bool] = None,
tags: Optional[Sequence[str]] = None,
timeouts: Optional[ClusterMaasTimeoutsArgs] = None) -> ClusterMaas
func GetClusterMaas(ctx *Context, name string, id IDInput, state *ClusterMaasState, opts ...ResourceOption) (*ClusterMaas, error)
public static ClusterMaas Get(string name, Input<string> id, ClusterMaasState? state, CustomResourceOptions? opts = null)
public static ClusterMaas get(String name, Output<String> id, ClusterMaasState state, CustomResourceOptions options)
resources: _: type: spectrocloud:ClusterMaas get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Admin
Kube stringConfig - Admin Kube-config for the cluster. This can be used to connect to the cluster using
kubectl
, With admin privilege. - Apply
Setting string - The setting to apply the cluster profile.
DownloadAndInstall
will download and install packs in one action.DownloadAndInstallLater
will only download artifact and postpone install for later. Default value isDownloadAndInstall
. - Backup
Policy ClusterMaas Backup Policy - The backup policy for the cluster. If not specified, no backups will be taken.
- Cloud
Account stringId - ID of the Maas cloud account used for the cluster. This cloud account must be of type
maas
. - Cloud
Config ClusterMaas Cloud Config - Cloud
Config stringId - ID of the cloud config used for the cluster. This cloud config must be of type
maas
. - Cluster
Maas stringId - The ID of this resource.
- Cluster
Meta stringAttribute cluster_meta_attribute
can be used to set additional cluster metadata information, eg{'nic_name': 'test', 'env': 'stage'}
- Cluster
Profiles List<ClusterMaas Cluster Profile> - Cluster
Rbac List<ClusterBindings Maas Cluster Rbac Binding> - The RBAC binding for the cluster.
- Context string
- The context of the MAAS configuration. Allowed values are
project
ortenant
. Default isproject
. If theproject
context is specified, the project name will sourced from the provider configuration parameterproject_name
. - Description string
- The description of the cluster. Default value is empty string.
- Force
Delete bool - If set to
true
, the cluster will be force deleted and user has to manually clean up the provisioned cloud resources. - Force
Delete doubleDelay - Delay duration in minutes to before invoking cluster force delete. Default and minimum is 20.
- Host
Configs List<ClusterMaas Host Config> - The host configuration for the cluster.
- Kubeconfig string
- Kubeconfig for the cluster. This can be used to connect to the cluster using
kubectl
. - Location
Configs List<ClusterMaas Location Config> - Machine
Pools List<ClusterMaas Machine Pool> - Name string
- The name of the cluster.
- Namespaces
List<Cluster
Maas Namespace> - The namespaces for the cluster.
- Os
Patch stringAfter - The date and time after which to patch the cluster. Prefix the time value with the respective RFC. Ex:
RFC3339: 2006-01-02T15:04:05Z07:00
- Os
Patch boolOn Boot - Whether to apply OS patch on boot. Default is
false
. - Os
Patch stringSchedule - Cron schedule for OS patching. This must be in the form of
0 0 * * *
. - Pause
Agent stringUpgrades - The pause agent upgrades setting allows to control the automatic upgrade of the Palette component and agent for an individual cluster. The default value is
unlock
, meaning upgrades occur automatically. Setting it tolock
pauses automatic agent upgrades for the cluster. - Review
Repave stringState - To authorize the cluster repave, set the value to
Approved
for approval and""
to decline. Default value is""
. - Scan
Policy ClusterMaas Scan Policy - The scan policy for the cluster.
- Skip
Completion bool - If
true
, the cluster will be created asynchronously. Default value isfalse
. - List<string>
- A list of tags to be applied to the cluster. Tags must be in the form of
key:value
. - Timeouts
Cluster
Maas Timeouts
- Admin
Kube stringConfig - Admin Kube-config for the cluster. This can be used to connect to the cluster using
kubectl
, With admin privilege. - Apply
Setting string - The setting to apply the cluster profile.
DownloadAndInstall
will download and install packs in one action.DownloadAndInstallLater
will only download artifact and postpone install for later. Default value isDownloadAndInstall
. - Backup
Policy ClusterMaas Backup Policy Args - The backup policy for the cluster. If not specified, no backups will be taken.
- Cloud
Account stringId - ID of the Maas cloud account used for the cluster. This cloud account must be of type
maas
. - Cloud
Config ClusterMaas Cloud Config Args - Cloud
Config stringId - ID of the cloud config used for the cluster. This cloud config must be of type
maas
. - Cluster
Maas stringId - The ID of this resource.
- Cluster
Meta stringAttribute cluster_meta_attribute
can be used to set additional cluster metadata information, eg{'nic_name': 'test', 'env': 'stage'}
- Cluster
Profiles []ClusterMaas Cluster Profile Args - Cluster
Rbac []ClusterBindings Maas Cluster Rbac Binding Args - The RBAC binding for the cluster.
- Context string
- The context of the MAAS configuration. Allowed values are
project
ortenant
. Default isproject
. If theproject
context is specified, the project name will sourced from the provider configuration parameterproject_name
. - Description string
- The description of the cluster. Default value is empty string.
- Force
Delete bool - If set to
true
, the cluster will be force deleted and user has to manually clean up the provisioned cloud resources. - Force
Delete float64Delay - Delay duration in minutes to before invoking cluster force delete. Default and minimum is 20.
- Host
Configs []ClusterMaas Host Config Args - The host configuration for the cluster.
- Kubeconfig string
- Kubeconfig for the cluster. This can be used to connect to the cluster using
kubectl
. - Location
Configs []ClusterMaas Location Config Args - Machine
Pools []ClusterMaas Machine Pool Args - Name string
- The name of the cluster.
- Namespaces
[]Cluster
Maas Namespace Args - The namespaces for the cluster.
- Os
Patch stringAfter - The date and time after which to patch the cluster. Prefix the time value with the respective RFC. Ex:
RFC3339: 2006-01-02T15:04:05Z07:00
- Os
Patch boolOn Boot - Whether to apply OS patch on boot. Default is
false
. - Os
Patch stringSchedule - Cron schedule for OS patching. This must be in the form of
0 0 * * *
. - Pause
Agent stringUpgrades - The pause agent upgrades setting allows to control the automatic upgrade of the Palette component and agent for an individual cluster. The default value is
unlock
, meaning upgrades occur automatically. Setting it tolock
pauses automatic agent upgrades for the cluster. - Review
Repave stringState - To authorize the cluster repave, set the value to
Approved
for approval and""
to decline. Default value is""
. - Scan
Policy ClusterMaas Scan Policy Args - The scan policy for the cluster.
- Skip
Completion bool - If
true
, the cluster will be created asynchronously. Default value isfalse
. - []string
- A list of tags to be applied to the cluster. Tags must be in the form of
key:value
. - Timeouts
Cluster
Maas Timeouts Args
- admin
Kube StringConfig - Admin Kube-config for the cluster. This can be used to connect to the cluster using
kubectl
, With admin privilege. - apply
Setting String - The setting to apply the cluster profile.
DownloadAndInstall
will download and install packs in one action.DownloadAndInstallLater
will only download artifact and postpone install for later. Default value isDownloadAndInstall
. - backup
Policy ClusterMaas Backup Policy - The backup policy for the cluster. If not specified, no backups will be taken.
- cloud
Account StringId - ID of the Maas cloud account used for the cluster. This cloud account must be of type
maas
. - cloud
Config ClusterMaas Cloud Config - cloud
Config StringId - ID of the cloud config used for the cluster. This cloud config must be of type
maas
. - cluster
Maas StringId - The ID of this resource.
- cluster
Meta StringAttribute cluster_meta_attribute
can be used to set additional cluster metadata information, eg{'nic_name': 'test', 'env': 'stage'}
- cluster
Profiles List<ClusterMaas Cluster Profile> - cluster
Rbac List<ClusterBindings Maas Cluster Rbac Binding> - The RBAC binding for the cluster.
- context String
- The context of the MAAS configuration. Allowed values are
project
ortenant
. Default isproject
. If theproject
context is specified, the project name will sourced from the provider configuration parameterproject_name
. - description String
- The description of the cluster. Default value is empty string.
- force
Delete Boolean - If set to
true
, the cluster will be force deleted and user has to manually clean up the provisioned cloud resources. - force
Delete DoubleDelay - Delay duration in minutes to before invoking cluster force delete. Default and minimum is 20.
- host
Configs List<ClusterMaas Host Config> - The host configuration for the cluster.
- kubeconfig String
- Kubeconfig for the cluster. This can be used to connect to the cluster using
kubectl
. - location
Configs List<ClusterMaas Location Config> - machine
Pools List<ClusterMaas Machine Pool> - name String
- The name of the cluster.
- namespaces
List<Cluster
Maas Namespace> - The namespaces for the cluster.
- os
Patch StringAfter - The date and time after which to patch the cluster. Prefix the time value with the respective RFC. Ex:
RFC3339: 2006-01-02T15:04:05Z07:00
- os
Patch BooleanOn Boot - Whether to apply OS patch on boot. Default is
false
. - os
Patch StringSchedule - Cron schedule for OS patching. This must be in the form of
0 0 * * *
. - pause
Agent StringUpgrades - The pause agent upgrades setting allows to control the automatic upgrade of the Palette component and agent for an individual cluster. The default value is
unlock
, meaning upgrades occur automatically. Setting it tolock
pauses automatic agent upgrades for the cluster. - review
Repave StringState - To authorize the cluster repave, set the value to
Approved
for approval and""
to decline. Default value is""
. - scan
Policy ClusterMaas Scan Policy - The scan policy for the cluster.
- skip
Completion Boolean - If
true
, the cluster will be created asynchronously. Default value isfalse
. - List<String>
- A list of tags to be applied to the cluster. Tags must be in the form of
key:value
. - timeouts
Cluster
Maas Timeouts
- admin
Kube stringConfig - Admin Kube-config for the cluster. This can be used to connect to the cluster using
kubectl
, With admin privilege. - apply
Setting string - The setting to apply the cluster profile.
DownloadAndInstall
will download and install packs in one action.DownloadAndInstallLater
will only download artifact and postpone install for later. Default value isDownloadAndInstall
. - backup
Policy ClusterMaas Backup Policy - The backup policy for the cluster. If not specified, no backups will be taken.
- cloud
Account stringId - ID of the Maas cloud account used for the cluster. This cloud account must be of type
maas
. - cloud
Config ClusterMaas Cloud Config - cloud
Config stringId - ID of the cloud config used for the cluster. This cloud config must be of type
maas
. - cluster
Maas stringId - The ID of this resource.
- cluster
Meta stringAttribute cluster_meta_attribute
can be used to set additional cluster metadata information, eg{'nic_name': 'test', 'env': 'stage'}
- cluster
Profiles ClusterMaas Cluster Profile[] - cluster
Rbac ClusterBindings Maas Cluster Rbac Binding[] - The RBAC binding for the cluster.
- context string
- The context of the MAAS configuration. Allowed values are
project
ortenant
. Default isproject
. If theproject
context is specified, the project name will sourced from the provider configuration parameterproject_name
. - description string
- The description of the cluster. Default value is empty string.
- force
Delete boolean - If set to
true
, the cluster will be force deleted and user has to manually clean up the provisioned cloud resources. - force
Delete numberDelay - Delay duration in minutes to before invoking cluster force delete. Default and minimum is 20.
- host
Configs ClusterMaas Host Config[] - The host configuration for the cluster.
- kubeconfig string
- Kubeconfig for the cluster. This can be used to connect to the cluster using
kubectl
. - location
Configs ClusterMaas Location Config[] - machine
Pools ClusterMaas Machine Pool[] - name string
- The name of the cluster.
- namespaces
Cluster
Maas Namespace[] - The namespaces for the cluster.
- os
Patch stringAfter - The date and time after which to patch the cluster. Prefix the time value with the respective RFC. Ex:
RFC3339: 2006-01-02T15:04:05Z07:00
- os
Patch booleanOn Boot - Whether to apply OS patch on boot. Default is
false
. - os
Patch stringSchedule - Cron schedule for OS patching. This must be in the form of
0 0 * * *
. - pause
Agent stringUpgrades - The pause agent upgrades setting allows to control the automatic upgrade of the Palette component and agent for an individual cluster. The default value is
unlock
, meaning upgrades occur automatically. Setting it tolock
pauses automatic agent upgrades for the cluster. - review
Repave stringState - To authorize the cluster repave, set the value to
Approved
for approval and""
to decline. Default value is""
. - scan
Policy ClusterMaas Scan Policy - The scan policy for the cluster.
- skip
Completion boolean - If
true
, the cluster will be created asynchronously. Default value isfalse
. - string[]
- A list of tags to be applied to the cluster. Tags must be in the form of
key:value
. - timeouts
Cluster
Maas Timeouts
- admin_
kube_ strconfig - Admin Kube-config for the cluster. This can be used to connect to the cluster using
kubectl
, With admin privilege. - apply_
setting str - The setting to apply the cluster profile.
DownloadAndInstall
will download and install packs in one action.DownloadAndInstallLater
will only download artifact and postpone install for later. Default value isDownloadAndInstall
. - backup_
policy ClusterMaas Backup Policy Args - The backup policy for the cluster. If not specified, no backups will be taken.
- cloud_
account_ strid - ID of the Maas cloud account used for the cluster. This cloud account must be of type
maas
. - cloud_
config ClusterMaas Cloud Config Args - cloud_
config_ strid - ID of the cloud config used for the cluster. This cloud config must be of type
maas
. - cluster_
maas_ strid - The ID of this resource.
- cluster_
meta_ strattribute cluster_meta_attribute
can be used to set additional cluster metadata information, eg{'nic_name': 'test', 'env': 'stage'}
- cluster_
profiles Sequence[ClusterMaas Cluster Profile Args] - cluster_
rbac_ Sequence[Clusterbindings Maas Cluster Rbac Binding Args] - The RBAC binding for the cluster.
- context str
- The context of the MAAS configuration. Allowed values are
project
ortenant
. Default isproject
. If theproject
context is specified, the project name will sourced from the provider configuration parameterproject_name
. - description str
- The description of the cluster. Default value is empty string.
- force_
delete bool - If set to
true
, the cluster will be force deleted and user has to manually clean up the provisioned cloud resources. - force_
delete_ floatdelay - Delay duration in minutes to before invoking cluster force delete. Default and minimum is 20.
- host_
configs Sequence[ClusterMaas Host Config Args] - The host configuration for the cluster.
- kubeconfig str
- Kubeconfig for the cluster. This can be used to connect to the cluster using
kubectl
. - location_
configs Sequence[ClusterMaas Location Config Args] - machine_
pools Sequence[ClusterMaas Machine Pool Args] - name str
- The name of the cluster.
- namespaces
Sequence[Cluster
Maas Namespace Args] - The namespaces for the cluster.
- os_
patch_ strafter - The date and time after which to patch the cluster. Prefix the time value with the respective RFC. Ex:
RFC3339: 2006-01-02T15:04:05Z07:00
- os_
patch_ boolon_ boot - Whether to apply OS patch on boot. Default is
false
. - os_
patch_ strschedule - Cron schedule for OS patching. This must be in the form of
0 0 * * *
. - pause_
agent_ strupgrades - The pause agent upgrades setting allows to control the automatic upgrade of the Palette component and agent for an individual cluster. The default value is
unlock
, meaning upgrades occur automatically. Setting it tolock
pauses automatic agent upgrades for the cluster. - review_
repave_ strstate - To authorize the cluster repave, set the value to
Approved
for approval and""
to decline. Default value is""
. - scan_
policy ClusterMaas Scan Policy Args - The scan policy for the cluster.
- skip_
completion bool - If
true
, the cluster will be created asynchronously. Default value isfalse
. - Sequence[str]
- A list of tags to be applied to the cluster. Tags must be in the form of
key:value
. - timeouts
Cluster
Maas Timeouts Args
- admin
Kube StringConfig - Admin Kube-config for the cluster. This can be used to connect to the cluster using
kubectl
, With admin privilege. - apply
Setting String - The setting to apply the cluster profile.
DownloadAndInstall
will download and install packs in one action.DownloadAndInstallLater
will only download artifact and postpone install for later. Default value isDownloadAndInstall
. - backup
Policy Property Map - The backup policy for the cluster. If not specified, no backups will be taken.
- cloud
Account StringId - ID of the Maas cloud account used for the cluster. This cloud account must be of type
maas
. - cloud
Config Property Map - cloud
Config StringId - ID of the cloud config used for the cluster. This cloud config must be of type
maas
. - cluster
Maas StringId - The ID of this resource.
- cluster
Meta StringAttribute cluster_meta_attribute
can be used to set additional cluster metadata information, eg{'nic_name': 'test', 'env': 'stage'}
- cluster
Profiles List<Property Map> - cluster
Rbac List<Property Map>Bindings - The RBAC binding for the cluster.
- context String
- The context of the MAAS configuration. Allowed values are
project
ortenant
. Default isproject
. If theproject
context is specified, the project name will sourced from the provider configuration parameterproject_name
. - description String
- The description of the cluster. Default value is empty string.
- force
Delete Boolean - If set to
true
, the cluster will be force deleted and user has to manually clean up the provisioned cloud resources. - force
Delete NumberDelay - Delay duration in minutes to before invoking cluster force delete. Default and minimum is 20.
- host
Configs List<Property Map> - The host configuration for the cluster.
- kubeconfig String
- Kubeconfig for the cluster. This can be used to connect to the cluster using
kubectl
. - location
Configs List<Property Map> - machine
Pools List<Property Map> - name String
- The name of the cluster.
- namespaces List<Property Map>
- The namespaces for the cluster.
- os
Patch StringAfter - The date and time after which to patch the cluster. Prefix the time value with the respective RFC. Ex:
RFC3339: 2006-01-02T15:04:05Z07:00
- os
Patch BooleanOn Boot - Whether to apply OS patch on boot. Default is
false
. - os
Patch StringSchedule - Cron schedule for OS patching. This must be in the form of
0 0 * * *
. - pause
Agent StringUpgrades - The pause agent upgrades setting allows to control the automatic upgrade of the Palette component and agent for an individual cluster. The default value is
unlock
, meaning upgrades occur automatically. Setting it tolock
pauses automatic agent upgrades for the cluster. - review
Repave StringState - To authorize the cluster repave, set the value to
Approved
for approval and""
to decline. Default value is""
. - scan
Policy Property Map - The scan policy for the cluster.
- skip
Completion Boolean - If
true
, the cluster will be created asynchronously. Default value isfalse
. - List<String>
- A list of tags to be applied to the cluster. Tags must be in the form of
key:value
. - timeouts Property Map
Supporting Types
ClusterMaasBackupPolicy, ClusterMaasBackupPolicyArgs
- Backup
Location stringId - The ID of the backup location to use for the backup.
- Expiry
In doubleHour - The number of hours after which the backup will be deleted. For example, if the expiry is set to 24, the backup will be deleted after 24 hours.
- Prefix string
- Prefix for the backup name. The backup name will be of the format \n\n-\n\n-\n\n.
- Schedule string
- The schedule for the backup. The schedule is specified in cron format. For example, to run the backup every day at 1:00 AM, the schedule should be set to
0 1 * * *
. - Cluster
Uids List<string> - The list of cluster UIDs to include in the backup. If
include_all_clusters
is set totrue
, then all clusters will be included. - Include
All boolClusters - Whether to include all clusters in the backup. If set to false, only the clusters specified in
cluster_uids
will be included. - Include
Cluster boolResources - Indicates whether to include cluster resources in the backup. If set to false, only the cluster configuration and disks will be backed up. (Note: Starting with Palette version 4.6, the includeclusterresources attribute will be deprecated, and a new attribute, includeclusterresources_mode, will be introduced.)
- Include
Cluster stringResources Mode - Specifies whether to include the cluster resources in the backup. Supported values are
always
,never
, andauto
. - Include
Disks bool - Whether to include the disks in the backup. If set to false, only the cluster configuration will be backed up.
- Namespaces List<string>
- The list of Kubernetes namespaces to include in the backup. If not specified, all namespaces will be included.
- Backup
Location stringId - The ID of the backup location to use for the backup.
- Expiry
In float64Hour - The number of hours after which the backup will be deleted. For example, if the expiry is set to 24, the backup will be deleted after 24 hours.
- Prefix string
- Prefix for the backup name. The backup name will be of the format \n\n-\n\n-\n\n.
- Schedule string
- The schedule for the backup. The schedule is specified in cron format. For example, to run the backup every day at 1:00 AM, the schedule should be set to
0 1 * * *
. - Cluster
Uids []string - The list of cluster UIDs to include in the backup. If
include_all_clusters
is set totrue
, then all clusters will be included. - Include
All boolClusters - Whether to include all clusters in the backup. If set to false, only the clusters specified in
cluster_uids
will be included. - Include
Cluster boolResources - Indicates whether to include cluster resources in the backup. If set to false, only the cluster configuration and disks will be backed up. (Note: Starting with Palette version 4.6, the includeclusterresources attribute will be deprecated, and a new attribute, includeclusterresources_mode, will be introduced.)
- Include
Cluster stringResources Mode - Specifies whether to include the cluster resources in the backup. Supported values are
always
,never
, andauto
. - Include
Disks bool - Whether to include the disks in the backup. If set to false, only the cluster configuration will be backed up.
- Namespaces []string
- The list of Kubernetes namespaces to include in the backup. If not specified, all namespaces will be included.
- backup
Location StringId - The ID of the backup location to use for the backup.
- expiry
In DoubleHour - The number of hours after which the backup will be deleted. For example, if the expiry is set to 24, the backup will be deleted after 24 hours.
- prefix String
- Prefix for the backup name. The backup name will be of the format \n\n-\n\n-\n\n.
- schedule String
- The schedule for the backup. The schedule is specified in cron format. For example, to run the backup every day at 1:00 AM, the schedule should be set to
0 1 * * *
. - cluster
Uids List<String> - The list of cluster UIDs to include in the backup. If
include_all_clusters
is set totrue
, then all clusters will be included. - include
All BooleanClusters - Whether to include all clusters in the backup. If set to false, only the clusters specified in
cluster_uids
will be included. - include
Cluster BooleanResources - Indicates whether to include cluster resources in the backup. If set to false, only the cluster configuration and disks will be backed up. (Note: Starting with Palette version 4.6, the includeclusterresources attribute will be deprecated, and a new attribute, includeclusterresources_mode, will be introduced.)
- include
Cluster StringResources Mode - Specifies whether to include the cluster resources in the backup. Supported values are
always
,never
, andauto
. - include
Disks Boolean - Whether to include the disks in the backup. If set to false, only the cluster configuration will be backed up.
- namespaces List<String>
- The list of Kubernetes namespaces to include in the backup. If not specified, all namespaces will be included.
- backup
Location stringId - The ID of the backup location to use for the backup.
- expiry
In numberHour - The number of hours after which the backup will be deleted. For example, if the expiry is set to 24, the backup will be deleted after 24 hours.
- prefix string
- Prefix for the backup name. The backup name will be of the format \n\n-\n\n-\n\n.
- schedule string
- The schedule for the backup. The schedule is specified in cron format. For example, to run the backup every day at 1:00 AM, the schedule should be set to
0 1 * * *
. - cluster
Uids string[] - The list of cluster UIDs to include in the backup. If
include_all_clusters
is set totrue
, then all clusters will be included. - include
All booleanClusters - Whether to include all clusters in the backup. If set to false, only the clusters specified in
cluster_uids
will be included. - include
Cluster booleanResources - Indicates whether to include cluster resources in the backup. If set to false, only the cluster configuration and disks will be backed up. (Note: Starting with Palette version 4.6, the includeclusterresources attribute will be deprecated, and a new attribute, includeclusterresources_mode, will be introduced.)
- include
Cluster stringResources Mode - Specifies whether to include the cluster resources in the backup. Supported values are
always
,never
, andauto
. - include
Disks boolean - Whether to include the disks in the backup. If set to false, only the cluster configuration will be backed up.
- namespaces string[]
- The list of Kubernetes namespaces to include in the backup. If not specified, all namespaces will be included.
- backup_
location_ strid - The ID of the backup location to use for the backup.
- expiry_
in_ floathour - The number of hours after which the backup will be deleted. For example, if the expiry is set to 24, the backup will be deleted after 24 hours.
- prefix str
- Prefix for the backup name. The backup name will be of the format \n\n-\n\n-\n\n.
- schedule str
- The schedule for the backup. The schedule is specified in cron format. For example, to run the backup every day at 1:00 AM, the schedule should be set to
0 1 * * *
. - cluster_
uids Sequence[str] - The list of cluster UIDs to include in the backup. If
include_all_clusters
is set totrue
, then all clusters will be included. - include_
all_ boolclusters - Whether to include all clusters in the backup. If set to false, only the clusters specified in
cluster_uids
will be included. - include_
cluster_ boolresources - Indicates whether to include cluster resources in the backup. If set to false, only the cluster configuration and disks will be backed up. (Note: Starting with Palette version 4.6, the includeclusterresources attribute will be deprecated, and a new attribute, includeclusterresources_mode, will be introduced.)
- include_
cluster_ strresources_ mode - Specifies whether to include the cluster resources in the backup. Supported values are
always
,never
, andauto
. - include_
disks bool - Whether to include the disks in the backup. If set to false, only the cluster configuration will be backed up.
- namespaces Sequence[str]
- The list of Kubernetes namespaces to include in the backup. If not specified, all namespaces will be included.
- backup
Location StringId - The ID of the backup location to use for the backup.
- expiry
In NumberHour - The number of hours after which the backup will be deleted. For example, if the expiry is set to 24, the backup will be deleted after 24 hours.
- prefix String
- Prefix for the backup name. The backup name will be of the format \n\n-\n\n-\n\n.
- schedule String
- The schedule for the backup. The schedule is specified in cron format. For example, to run the backup every day at 1:00 AM, the schedule should be set to
0 1 * * *
. - cluster
Uids List<String> - The list of cluster UIDs to include in the backup. If
include_all_clusters
is set totrue
, then all clusters will be included. - include
All BooleanClusters - Whether to include all clusters in the backup. If set to false, only the clusters specified in
cluster_uids
will be included. - include
Cluster BooleanResources - Indicates whether to include cluster resources in the backup. If set to false, only the cluster configuration and disks will be backed up. (Note: Starting with Palette version 4.6, the includeclusterresources attribute will be deprecated, and a new attribute, includeclusterresources_mode, will be introduced.)
- include
Cluster StringResources Mode - Specifies whether to include the cluster resources in the backup. Supported values are
always
,never
, andauto
. - include
Disks Boolean - Whether to include the disks in the backup. If set to false, only the cluster configuration will be backed up.
- namespaces List<String>
- The list of Kubernetes namespaces to include in the backup. If not specified, all namespaces will be included.
ClusterMaasCloudConfig, ClusterMaasCloudConfigArgs
- Domain string
- Domain name in which the cluster to be provisioned.
- Domain string
- Domain name in which the cluster to be provisioned.
- domain String
- Domain name in which the cluster to be provisioned.
- domain string
- Domain name in which the cluster to be provisioned.
- domain str
- Domain name in which the cluster to be provisioned.
- domain String
- Domain name in which the cluster to be provisioned.
ClusterMaasClusterProfile, ClusterMaasClusterProfileArgs
- Id string
- The ID of the cluster profile.
- Packs
List<Cluster
Maas Cluster Profile Pack> - For packs of type
spectro
,helm
, andmanifest
, at least one pack must be specified. - Variables Dictionary<string, string>
- A map of cluster profile variables, specified as key-value pairs. For example:
priority = "5"
.
- Id string
- The ID of the cluster profile.
- Packs
[]Cluster
Maas Cluster Profile Pack - For packs of type
spectro
,helm
, andmanifest
, at least one pack must be specified. - Variables map[string]string
- A map of cluster profile variables, specified as key-value pairs. For example:
priority = "5"
.
- id String
- The ID of the cluster profile.
- packs
List<Cluster
Maas Cluster Profile Pack> - For packs of type
spectro
,helm
, andmanifest
, at least one pack must be specified. - variables Map<String,String>
- A map of cluster profile variables, specified as key-value pairs. For example:
priority = "5"
.
- id string
- The ID of the cluster profile.
- packs
Cluster
Maas Cluster Profile Pack[] - For packs of type
spectro
,helm
, andmanifest
, at least one pack must be specified. - variables {[key: string]: string}
- A map of cluster profile variables, specified as key-value pairs. For example:
priority = "5"
.
- id str
- The ID of the cluster profile.
- packs
Sequence[Cluster
Maas Cluster Profile Pack] - For packs of type
spectro
,helm
, andmanifest
, at least one pack must be specified. - variables Mapping[str, str]
- A map of cluster profile variables, specified as key-value pairs. For example:
priority = "5"
.
- id String
- The ID of the cluster profile.
- packs List<Property Map>
- For packs of type
spectro
,helm
, andmanifest
, at least one pack must be specified. - variables Map<String>
- A map of cluster profile variables, specified as key-value pairs. For example:
priority = "5"
.
ClusterMaasClusterProfilePack, ClusterMaasClusterProfilePackArgs
- Name string
- The name of the pack. The name must be unique within the cluster profile.
- Manifests
List<Cluster
Maas Cluster Profile Pack Manifest> - Registry
Uid string - The registry UID of the pack. The registry UID is the unique identifier of the registry. This attribute is required if there is more than one registry that contains a pack with the same name.
- Tag string
- The tag of the pack. The tag is the version of the pack. This attribute is required if the pack type is
spectro
orhelm
. - Type string
- The type of the pack. Allowed values are
spectro
,manifest
,helm
, oroci
. The default value is spectro. If using an OCI registry for pack, set the type tooci
. - Uid string
- The unique identifier of the pack. The value can be looked up using the
spectrocloud.getPack
data source. This value is required if the pack type isspectro
and forhelm
if the chart is from a public helm registry. - Values string
- The values of the pack. The values are the configuration values of the pack. The values are specified in YAML format.
- Name string
- The name of the pack. The name must be unique within the cluster profile.
- Manifests
[]Cluster
Maas Cluster Profile Pack Manifest - Registry
Uid string - The registry UID of the pack. The registry UID is the unique identifier of the registry. This attribute is required if there is more than one registry that contains a pack with the same name.
- Tag string
- The tag of the pack. The tag is the version of the pack. This attribute is required if the pack type is
spectro
orhelm
. - Type string
- The type of the pack. Allowed values are
spectro
,manifest
,helm
, oroci
. The default value is spectro. If using an OCI registry for pack, set the type tooci
. - Uid string
- The unique identifier of the pack. The value can be looked up using the
spectrocloud.getPack
data source. This value is required if the pack type isspectro
and forhelm
if the chart is from a public helm registry. - Values string
- The values of the pack. The values are the configuration values of the pack. The values are specified in YAML format.
- name String
- The name of the pack. The name must be unique within the cluster profile.
- manifests
List<Cluster
Maas Cluster Profile Pack Manifest> - registry
Uid String - The registry UID of the pack. The registry UID is the unique identifier of the registry. This attribute is required if there is more than one registry that contains a pack with the same name.
- tag String
- The tag of the pack. The tag is the version of the pack. This attribute is required if the pack type is
spectro
orhelm
. - type String
- The type of the pack. Allowed values are
spectro
,manifest
,helm
, oroci
. The default value is spectro. If using an OCI registry for pack, set the type tooci
. - uid String
- The unique identifier of the pack. The value can be looked up using the
spectrocloud.getPack
data source. This value is required if the pack type isspectro
and forhelm
if the chart is from a public helm registry. - values String
- The values of the pack. The values are the configuration values of the pack. The values are specified in YAML format.
- name string
- The name of the pack. The name must be unique within the cluster profile.
- manifests
Cluster
Maas Cluster Profile Pack Manifest[] - registry
Uid string - The registry UID of the pack. The registry UID is the unique identifier of the registry. This attribute is required if there is more than one registry that contains a pack with the same name.
- tag string
- The tag of the pack. The tag is the version of the pack. This attribute is required if the pack type is
spectro
orhelm
. - type string
- The type of the pack. Allowed values are
spectro
,manifest
,helm
, oroci
. The default value is spectro. If using an OCI registry for pack, set the type tooci
. - uid string
- The unique identifier of the pack. The value can be looked up using the
spectrocloud.getPack
data source. This value is required if the pack type isspectro
and forhelm
if the chart is from a public helm registry. - values string
- The values of the pack. The values are the configuration values of the pack. The values are specified in YAML format.
- name str
- The name of the pack. The name must be unique within the cluster profile.
- manifests
Sequence[Cluster
Maas Cluster Profile Pack Manifest] - registry_
uid str - The registry UID of the pack. The registry UID is the unique identifier of the registry. This attribute is required if there is more than one registry that contains a pack with the same name.
- tag str
- The tag of the pack. The tag is the version of the pack. This attribute is required if the pack type is
spectro
orhelm
. - type str
- The type of the pack. Allowed values are
spectro
,manifest
,helm
, oroci
. The default value is spectro. If using an OCI registry for pack, set the type tooci
. - uid str
- The unique identifier of the pack. The value can be looked up using the
spectrocloud.getPack
data source. This value is required if the pack type isspectro
and forhelm
if the chart is from a public helm registry. - values str
- The values of the pack. The values are the configuration values of the pack. The values are specified in YAML format.
- name String
- The name of the pack. The name must be unique within the cluster profile.
- manifests List<Property Map>
- registry
Uid String - The registry UID of the pack. The registry UID is the unique identifier of the registry. This attribute is required if there is more than one registry that contains a pack with the same name.
- tag String
- The tag of the pack. The tag is the version of the pack. This attribute is required if the pack type is
spectro
orhelm
. - type String
- The type of the pack. Allowed values are
spectro
,manifest
,helm
, oroci
. The default value is spectro. If using an OCI registry for pack, set the type tooci
. - uid String
- The unique identifier of the pack. The value can be looked up using the
spectrocloud.getPack
data source. This value is required if the pack type isspectro
and forhelm
if the chart is from a public helm registry. - values String
- The values of the pack. The values are the configuration values of the pack. The values are specified in YAML format.
ClusterMaasClusterProfilePackManifest, ClusterMaasClusterProfilePackManifestArgs
ClusterMaasClusterRbacBinding, ClusterMaasClusterRbacBindingArgs
- Type string
- The type of the RBAC binding. Can be one of the following values:
RoleBinding
, orClusterRoleBinding
. - Namespace string
- The Kubernetes namespace of the RBAC binding. Required if 'type' is set to 'RoleBinding'.
- Role Dictionary<string, string>
- The role of the RBAC binding. Required if 'type' is set to 'RoleBinding'.
- Subjects
List<Cluster
Maas Cluster Rbac Binding Subject>
- Type string
- The type of the RBAC binding. Can be one of the following values:
RoleBinding
, orClusterRoleBinding
. - Namespace string
- The Kubernetes namespace of the RBAC binding. Required if 'type' is set to 'RoleBinding'.
- Role map[string]string
- The role of the RBAC binding. Required if 'type' is set to 'RoleBinding'.
- Subjects
[]Cluster
Maas Cluster Rbac Binding Subject
- type String
- The type of the RBAC binding. Can be one of the following values:
RoleBinding
, orClusterRoleBinding
. - namespace String
- The Kubernetes namespace of the RBAC binding. Required if 'type' is set to 'RoleBinding'.
- role Map<String,String>
- The role of the RBAC binding. Required if 'type' is set to 'RoleBinding'.
- subjects
List<Cluster
Maas Cluster Rbac Binding Subject>
- type string
- The type of the RBAC binding. Can be one of the following values:
RoleBinding
, orClusterRoleBinding
. - namespace string
- The Kubernetes namespace of the RBAC binding. Required if 'type' is set to 'RoleBinding'.
- role {[key: string]: string}
- The role of the RBAC binding. Required if 'type' is set to 'RoleBinding'.
- subjects
Cluster
Maas Cluster Rbac Binding Subject[]
- type str
- The type of the RBAC binding. Can be one of the following values:
RoleBinding
, orClusterRoleBinding
. - namespace str
- The Kubernetes namespace of the RBAC binding. Required if 'type' is set to 'RoleBinding'.
- role Mapping[str, str]
- The role of the RBAC binding. Required if 'type' is set to 'RoleBinding'.
- subjects
Sequence[Cluster
Maas Cluster Rbac Binding Subject]
- type String
- The type of the RBAC binding. Can be one of the following values:
RoleBinding
, orClusterRoleBinding
. - namespace String
- The Kubernetes namespace of the RBAC binding. Required if 'type' is set to 'RoleBinding'.
- role Map<String>
- The role of the RBAC binding. Required if 'type' is set to 'RoleBinding'.
- subjects List<Property Map>
ClusterMaasClusterRbacBindingSubject, ClusterMaasClusterRbacBindingSubjectArgs
ClusterMaasHostConfig, ClusterMaasHostConfigArgs
- External
Traffic stringPolicy - The external traffic policy for the cluster.
- Host
Endpoint stringType - The type of endpoint for the cluster. Can be either 'Ingress' or 'LoadBalancer'. The default is 'Ingress'.
- Ingress
Host string - The host for the Ingress endpoint. Required if 'hostendpointtype' is set to 'Ingress'.
- Load
Balancer stringSource Ranges - The source ranges for the load balancer. Required if 'hostendpointtype' is set to 'LoadBalancer'.
- External
Traffic stringPolicy - The external traffic policy for the cluster.
- Host
Endpoint stringType - The type of endpoint for the cluster. Can be either 'Ingress' or 'LoadBalancer'. The default is 'Ingress'.
- Ingress
Host string - The host for the Ingress endpoint. Required if 'hostendpointtype' is set to 'Ingress'.
- Load
Balancer stringSource Ranges - The source ranges for the load balancer. Required if 'hostendpointtype' is set to 'LoadBalancer'.
- external
Traffic StringPolicy - The external traffic policy for the cluster.
- host
Endpoint StringType - The type of endpoint for the cluster. Can be either 'Ingress' or 'LoadBalancer'. The default is 'Ingress'.
- ingress
Host String - The host for the Ingress endpoint. Required if 'hostendpointtype' is set to 'Ingress'.
- load
Balancer StringSource Ranges - The source ranges for the load balancer. Required if 'hostendpointtype' is set to 'LoadBalancer'.
- external
Traffic stringPolicy - The external traffic policy for the cluster.
- host
Endpoint stringType - The type of endpoint for the cluster. Can be either 'Ingress' or 'LoadBalancer'. The default is 'Ingress'.
- ingress
Host string - The host for the Ingress endpoint. Required if 'hostendpointtype' is set to 'Ingress'.
- load
Balancer stringSource Ranges - The source ranges for the load balancer. Required if 'hostendpointtype' is set to 'LoadBalancer'.
- external_
traffic_ strpolicy - The external traffic policy for the cluster.
- host_
endpoint_ strtype - The type of endpoint for the cluster. Can be either 'Ingress' or 'LoadBalancer'. The default is 'Ingress'.
- ingress_
host str - The host for the Ingress endpoint. Required if 'hostendpointtype' is set to 'Ingress'.
- load_
balancer_ strsource_ ranges - The source ranges for the load balancer. Required if 'hostendpointtype' is set to 'LoadBalancer'.
- external
Traffic StringPolicy - The external traffic policy for the cluster.
- host
Endpoint StringType - The type of endpoint for the cluster. Can be either 'Ingress' or 'LoadBalancer'. The default is 'Ingress'.
- ingress
Host String - The host for the Ingress endpoint. Required if 'hostendpointtype' is set to 'Ingress'.
- load
Balancer StringSource Ranges - The source ranges for the load balancer. Required if 'hostendpointtype' is set to 'LoadBalancer'.
ClusterMaasLocationConfig, ClusterMaasLocationConfigArgs
- Latitude double
- The latitude coordinates value.
- Longitude double
- The longitude coordinates value.
- Country
Code string - The country code of the country the cluster is located in.
- Country
Name string - The name of the country.
- Region
Code string - The region code of where the cluster is located in.
- Region
Name string - The name of the region.
- Latitude float64
- The latitude coordinates value.
- Longitude float64
- The longitude coordinates value.
- Country
Code string - The country code of the country the cluster is located in.
- Country
Name string - The name of the country.
- Region
Code string - The region code of where the cluster is located in.
- Region
Name string - The name of the region.
- latitude Double
- The latitude coordinates value.
- longitude Double
- The longitude coordinates value.
- country
Code String - The country code of the country the cluster is located in.
- country
Name String - The name of the country.
- region
Code String - The region code of where the cluster is located in.
- region
Name String - The name of the region.
- latitude number
- The latitude coordinates value.
- longitude number
- The longitude coordinates value.
- country
Code string - The country code of the country the cluster is located in.
- country
Name string - The name of the country.
- region
Code string - The region code of where the cluster is located in.
- region
Name string - The name of the region.
- latitude float
- The latitude coordinates value.
- longitude float
- The longitude coordinates value.
- country_
code str - The country code of the country the cluster is located in.
- country_
name str - The name of the country.
- region_
code str - The region code of where the cluster is located in.
- region_
name str - The name of the region.
- latitude Number
- The latitude coordinates value.
- longitude Number
- The longitude coordinates value.
- country
Code String - The country code of the country the cluster is located in.
- country
Name String - The name of the country.
- region
Code String - The region code of where the cluster is located in.
- region
Name String - The name of the region.
ClusterMaasMachinePool, ClusterMaasMachinePoolArgs
- Count double
- Number of nodes in the machine pool.
- Instance
Type ClusterMaas Machine Pool Instance Type - Name string
- Name of the machine pool.
- Placement
Cluster
Maas Machine Pool Placement - Additional
Labels Dictionary<string, string> - Additional labels to be applied to the machine pool. Labels must be in the form of
key:value
. - Azs List<string>
- Availability zones in which the machine pool nodes to be provisioned.
- Control
Plane bool - Whether this machine pool is a control plane. Defaults to
false
. - Control
Plane boolAs Worker - Whether this machine pool is a control plane and a worker. Defaults to
false
. - Max double
- Maximum number of nodes in the machine pool. This is used for autoscaling the machine pool.
- Min double
- Minimum number of nodes in the machine pool. This is used for autoscaling the machine pool.
- Node
Repave doubleInterval - Minimum number of seconds node should be Ready, before the next node is selected for repave. Default value is
0
, Applicable only for worker pools. - List<string>
- Node tags to dynamically place nodes in a pool by using MAAS automatic tags. Specify the tag values that you want to apply to all nodes in the node pool.
- Nodes
List<Cluster
Maas Machine Pool Node> - Taints
List<Cluster
Maas Machine Pool Taint> - Update
Strategy string - Update strategy for the machine pool. Valid values are
RollingUpdateScaleOut
andRollingUpdateScaleIn
.
- Count float64
- Number of nodes in the machine pool.
- Instance
Type ClusterMaas Machine Pool Instance Type - Name string
- Name of the machine pool.
- Placement
Cluster
Maas Machine Pool Placement - Additional
Labels map[string]string - Additional labels to be applied to the machine pool. Labels must be in the form of
key:value
. - Azs []string
- Availability zones in which the machine pool nodes to be provisioned.
- Control
Plane bool - Whether this machine pool is a control plane. Defaults to
false
. - Control
Plane boolAs Worker - Whether this machine pool is a control plane and a worker. Defaults to
false
. - Max float64
- Maximum number of nodes in the machine pool. This is used for autoscaling the machine pool.
- Min float64
- Minimum number of nodes in the machine pool. This is used for autoscaling the machine pool.
- Node
Repave float64Interval - Minimum number of seconds node should be Ready, before the next node is selected for repave. Default value is
0
, Applicable only for worker pools. - []string
- Node tags to dynamically place nodes in a pool by using MAAS automatic tags. Specify the tag values that you want to apply to all nodes in the node pool.
- Nodes
[]Cluster
Maas Machine Pool Node - Taints
[]Cluster
Maas Machine Pool Taint - Update
Strategy string - Update strategy for the machine pool. Valid values are
RollingUpdateScaleOut
andRollingUpdateScaleIn
.
- count Double
- Number of nodes in the machine pool.
- instance
Type ClusterMaas Machine Pool Instance Type - name String
- Name of the machine pool.
- placement
Cluster
Maas Machine Pool Placement - additional
Labels Map<String,String> - Additional labels to be applied to the machine pool. Labels must be in the form of
key:value
. - azs List<String>
- Availability zones in which the machine pool nodes to be provisioned.
- control
Plane Boolean - Whether this machine pool is a control plane. Defaults to
false
. - control
Plane BooleanAs Worker - Whether this machine pool is a control plane and a worker. Defaults to
false
. - max Double
- Maximum number of nodes in the machine pool. This is used for autoscaling the machine pool.
- min Double
- Minimum number of nodes in the machine pool. This is used for autoscaling the machine pool.
- node
Repave DoubleInterval - Minimum number of seconds node should be Ready, before the next node is selected for repave. Default value is
0
, Applicable only for worker pools. - List<String>
- Node tags to dynamically place nodes in a pool by using MAAS automatic tags. Specify the tag values that you want to apply to all nodes in the node pool.
- nodes
List<Cluster
Maas Machine Pool Node> - taints
List<Cluster
Maas Machine Pool Taint> - update
Strategy String - Update strategy for the machine pool. Valid values are
RollingUpdateScaleOut
andRollingUpdateScaleIn
.
- count number
- Number of nodes in the machine pool.
- instance
Type ClusterMaas Machine Pool Instance Type - name string
- Name of the machine pool.
- placement
Cluster
Maas Machine Pool Placement - additional
Labels {[key: string]: string} - Additional labels to be applied to the machine pool. Labels must be in the form of
key:value
. - azs string[]
- Availability zones in which the machine pool nodes to be provisioned.
- control
Plane boolean - Whether this machine pool is a control plane. Defaults to
false
. - control
Plane booleanAs Worker - Whether this machine pool is a control plane and a worker. Defaults to
false
. - max number
- Maximum number of nodes in the machine pool. This is used for autoscaling the machine pool.
- min number
- Minimum number of nodes in the machine pool. This is used for autoscaling the machine pool.
- node
Repave numberInterval - Minimum number of seconds node should be Ready, before the next node is selected for repave. Default value is
0
, Applicable only for worker pools. - string[]
- Node tags to dynamically place nodes in a pool by using MAAS automatic tags. Specify the tag values that you want to apply to all nodes in the node pool.
- nodes
Cluster
Maas Machine Pool Node[] - taints
Cluster
Maas Machine Pool Taint[] - update
Strategy string - Update strategy for the machine pool. Valid values are
RollingUpdateScaleOut
andRollingUpdateScaleIn
.
- count float
- Number of nodes in the machine pool.
- instance_
type ClusterMaas Machine Pool Instance Type - name str
- Name of the machine pool.
- placement
Cluster
Maas Machine Pool Placement - additional_
labels Mapping[str, str] - Additional labels to be applied to the machine pool. Labels must be in the form of
key:value
. - azs Sequence[str]
- Availability zones in which the machine pool nodes to be provisioned.
- control_
plane bool - Whether this machine pool is a control plane. Defaults to
false
. - control_
plane_ boolas_ worker - Whether this machine pool is a control plane and a worker. Defaults to
false
. - max float
- Maximum number of nodes in the machine pool. This is used for autoscaling the machine pool.
- min float
- Minimum number of nodes in the machine pool. This is used for autoscaling the machine pool.
- node_
repave_ floatinterval - Minimum number of seconds node should be Ready, before the next node is selected for repave. Default value is
0
, Applicable only for worker pools. - Sequence[str]
- Node tags to dynamically place nodes in a pool by using MAAS automatic tags. Specify the tag values that you want to apply to all nodes in the node pool.
- nodes
Sequence[Cluster
Maas Machine Pool Node] - taints
Sequence[Cluster
Maas Machine Pool Taint] - update_
strategy str - Update strategy for the machine pool. Valid values are
RollingUpdateScaleOut
andRollingUpdateScaleIn
.
- count Number
- Number of nodes in the machine pool.
- instance
Type Property Map - name String
- Name of the machine pool.
- placement Property Map
- additional
Labels Map<String> - Additional labels to be applied to the machine pool. Labels must be in the form of
key:value
. - azs List<String>
- Availability zones in which the machine pool nodes to be provisioned.
- control
Plane Boolean - Whether this machine pool is a control plane. Defaults to
false
. - control
Plane BooleanAs Worker - Whether this machine pool is a control plane and a worker. Defaults to
false
. - max Number
- Maximum number of nodes in the machine pool. This is used for autoscaling the machine pool.
- min Number
- Minimum number of nodes in the machine pool. This is used for autoscaling the machine pool.
- node
Repave NumberInterval - Minimum number of seconds node should be Ready, before the next node is selected for repave. Default value is
0
, Applicable only for worker pools. - List<String>
- Node tags to dynamically place nodes in a pool by using MAAS automatic tags. Specify the tag values that you want to apply to all nodes in the node pool.
- nodes List<Property Map>
- taints List<Property Map>
- update
Strategy String - Update strategy for the machine pool. Valid values are
RollingUpdateScaleOut
andRollingUpdateScaleIn
.
ClusterMaasMachinePoolInstanceType, ClusterMaasMachinePoolInstanceTypeArgs
- Min
Cpu double - Minimum number of CPU required for the machine pool node.
- Min
Memory doubleMb - Minimum memory in MB required for the machine pool node.
- Min
Cpu float64 - Minimum number of CPU required for the machine pool node.
- Min
Memory float64Mb - Minimum memory in MB required for the machine pool node.
- min
Cpu Double - Minimum number of CPU required for the machine pool node.
- min
Memory DoubleMb - Minimum memory in MB required for the machine pool node.
- min
Cpu number - Minimum number of CPU required for the machine pool node.
- min
Memory numberMb - Minimum memory in MB required for the machine pool node.
- min_
cpu float - Minimum number of CPU required for the machine pool node.
- min_
memory_ floatmb - Minimum memory in MB required for the machine pool node.
- min
Cpu Number - Minimum number of CPU required for the machine pool node.
- min
Memory NumberMb - Minimum memory in MB required for the machine pool node.
ClusterMaasMachinePoolNode, ClusterMaasMachinePoolNodeArgs
ClusterMaasMachinePoolPlacement, ClusterMaasMachinePoolPlacementArgs
- Resource
Pool string - The name of the resource pool in the Maas cloud.
- Id string
- This is a computed(read-only) ID of the placement that is used to connect to the Maas cloud.
- Resource
Pool string - The name of the resource pool in the Maas cloud.
- Id string
- This is a computed(read-only) ID of the placement that is used to connect to the Maas cloud.
- resource
Pool String - The name of the resource pool in the Maas cloud.
- id String
- This is a computed(read-only) ID of the placement that is used to connect to the Maas cloud.
- resource
Pool string - The name of the resource pool in the Maas cloud.
- id string
- This is a computed(read-only) ID of the placement that is used to connect to the Maas cloud.
- resource_
pool str - The name of the resource pool in the Maas cloud.
- id str
- This is a computed(read-only) ID of the placement that is used to connect to the Maas cloud.
- resource
Pool String - The name of the resource pool in the Maas cloud.
- id String
- This is a computed(read-only) ID of the placement that is used to connect to the Maas cloud.
ClusterMaasMachinePoolTaint, ClusterMaasMachinePoolTaintArgs
ClusterMaasNamespace, ClusterMaasNamespaceArgs
- Name string
- Name of the namespace. This is the name of the Kubernetes namespace in the cluster.
- Resource
Allocation Dictionary<string, string> - Resource allocation for the namespace. This is a map containing the resource type and the resource value. For example,
{cpu_cores: '2', memory_MiB: '2048'}
- Images
Blacklists List<string> - List of images to disallow for the namespace. For example,
['nginx:latest', 'redis:latest']
- Name string
- Name of the namespace. This is the name of the Kubernetes namespace in the cluster.
- Resource
Allocation map[string]string - Resource allocation for the namespace. This is a map containing the resource type and the resource value. For example,
{cpu_cores: '2', memory_MiB: '2048'}
- Images
Blacklists []string - List of images to disallow for the namespace. For example,
['nginx:latest', 'redis:latest']
- name String
- Name of the namespace. This is the name of the Kubernetes namespace in the cluster.
- resource
Allocation Map<String,String> - Resource allocation for the namespace. This is a map containing the resource type and the resource value. For example,
{cpu_cores: '2', memory_MiB: '2048'}
- images
Blacklists List<String> - List of images to disallow for the namespace. For example,
['nginx:latest', 'redis:latest']
- name string
- Name of the namespace. This is the name of the Kubernetes namespace in the cluster.
- resource
Allocation {[key: string]: string} - Resource allocation for the namespace. This is a map containing the resource type and the resource value. For example,
{cpu_cores: '2', memory_MiB: '2048'}
- images
Blacklists string[] - List of images to disallow for the namespace. For example,
['nginx:latest', 'redis:latest']
- name str
- Name of the namespace. This is the name of the Kubernetes namespace in the cluster.
- resource_
allocation Mapping[str, str] - Resource allocation for the namespace. This is a map containing the resource type and the resource value. For example,
{cpu_cores: '2', memory_MiB: '2048'}
- images_
blacklists Sequence[str] - List of images to disallow for the namespace. For example,
['nginx:latest', 'redis:latest']
- name String
- Name of the namespace. This is the name of the Kubernetes namespace in the cluster.
- resource
Allocation Map<String> - Resource allocation for the namespace. This is a map containing the resource type and the resource value. For example,
{cpu_cores: '2', memory_MiB: '2048'}
- images
Blacklists List<String> - List of images to disallow for the namespace. For example,
['nginx:latest', 'redis:latest']
ClusterMaasScanPolicy, ClusterMaasScanPolicyArgs
- Configuration
Scan stringSchedule - The schedule for configuration scan.
- Conformance
Scan stringSchedule - The schedule for conformance scan.
- Penetration
Scan stringSchedule - The schedule for penetration scan.
- Configuration
Scan stringSchedule - The schedule for configuration scan.
- Conformance
Scan stringSchedule - The schedule for conformance scan.
- Penetration
Scan stringSchedule - The schedule for penetration scan.
- configuration
Scan StringSchedule - The schedule for configuration scan.
- conformance
Scan StringSchedule - The schedule for conformance scan.
- penetration
Scan StringSchedule - The schedule for penetration scan.
- configuration
Scan stringSchedule - The schedule for configuration scan.
- conformance
Scan stringSchedule - The schedule for conformance scan.
- penetration
Scan stringSchedule - The schedule for penetration scan.
- configuration_
scan_ strschedule - The schedule for configuration scan.
- conformance_
scan_ strschedule - The schedule for conformance scan.
- penetration_
scan_ strschedule - The schedule for penetration scan.
- configuration
Scan StringSchedule - The schedule for configuration scan.
- conformance
Scan StringSchedule - The schedule for conformance scan.
- penetration
Scan StringSchedule - The schedule for penetration scan.
ClusterMaasTimeouts, ClusterMaasTimeoutsArgs
Import
Using pulumi import
, import the cluster using the id
colon separated with context
. For example:
console
$ pulumi import spectrocloud:index/clusterMaas:ClusterMaas example example_id:project
Refer to the Import section to learn more.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- spectrocloud spectrocloud/terraform-provider-spectrocloud
- License
- Notes
- This Pulumi package is based on the
spectrocloud
Terraform Provider.