UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

191 lines 7.3 kB
"use strict"; // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.NodePool = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Provides a resource to manage veecp node pool * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * import * as volcengine from "@volcengine/pulumi"; * * const fooZones = volcengine.ecs.getZones({}); * const fooVpc = new volcengine.vpc.Vpc("fooVpc", { * vpcName: "acc-test-project1", * cidrBlock: "172.16.0.0/16", * }); * const fooSubnet = new volcengine.vpc.Subnet("fooSubnet", { * subnetName: "acc-subnet-test-2", * cidrBlock: "172.16.0.0/24", * zoneId: fooZones.then(fooZones => fooZones.zones?.[0]?.id), * vpcId: fooVpc.id, * }); * const fooSecurityGroup = new volcengine.vpc.SecurityGroup("fooSecurityGroup", { * vpcId: fooVpc.id, * securityGroupName: "acc-test-security-group2", * }); * const fooCluster = new volcengine.veecp.Cluster("fooCluster", { * description: "created by terraform", * deleteProtectionEnabled: false, * profile: "Edge", * clusterConfig: { * subnetIds: [fooSubnet.id], * apiServerPublicAccessEnabled: true, * apiServerPublicAccessConfig: { * publicAccessNetworkConfig: { * billingType: "PostPaidByBandwidth", * bandwidth: 1, * }, * }, * resourcePublicAccessDefaultEnabled: true, * }, * podsConfig: { * podNetworkMode: "Flannel", * flannelConfig: { * podCidrs: ["172.22.224.0/20"], * maxPodsPerNode: 64, * }, * }, * servicesConfig: { * serviceCidrsv4s: ["172.30.0.0/18"], * }, * }); * const fooNodePool = new volcengine.veecp.NodePool("fooNodePool", { * clusterId: fooCluster.id, * clientToken: "FGAHIxa23412FGAIOHioj", * autoScaling: { * enabled: true, * minReplicas: 0, * maxReplicas: 5, * desiredReplicas: 0, * priority: 5, * subnetPolicy: "ZoneBalance", * }, * nodeConfig: { * instanceTypeIds: ["ecs.c1ie.xlarge"], * subnetIds: [fooSubnet.id], * imageId: "", * systemVolume: { * type: "ESSD_PL0", * size: 80, * }, * dataVolumes: [ * { * type: "ESSD_PL0", * size: 80, * mountPoint: "/tf1", * }, * { * type: "ESSD_PL0", * size: 60, * mountPoint: "/tf2", * }, * ], * initializeScript: "ZWNobyBoZWxsbyB0ZXJyYWZvcm0h", * security: { * login: { * password: "UHdkMTIzNDU2", * }, * securityStrategies: ["Hids"], * securityGroupIds: [fooSecurityGroup.id], * }, * additionalContainerStorageEnabled: false, * instanceChargeType: "PostPaid", * namePrefix: "acc-test", * ecsTags: [{ * key: "ecs_k1", * value: "ecs_v1", * }], * }, * kubernetesConfig: { * labels: [{ * key: "label1", * value: "value1", * }], * taints: [{ * key: "taint-key/node-type", * value: "taint-value", * effect: "NoSchedule", * }], * cordon: true, * }, * }); * ``` * * ## Import * * VeecpNodePool can be imported using the id, e.g. * * ```sh * $ pulumi import volcengine:veecp/nodePool:NodePool default resource_id * ``` */ class NodePool extends pulumi.CustomResource { /** * Get an existing NodePool resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name, id, state, opts) { return new NodePool(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of NodePool. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj) { if (obj === undefined || obj === null) { return false; } return obj['__pulumiType'] === NodePool.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["autoScaling"] = state ? state.autoScaling : undefined; resourceInputs["clientToken"] = state ? state.clientToken : undefined; resourceInputs["clusterId"] = state ? state.clusterId : undefined; resourceInputs["instanceIds"] = state ? state.instanceIds : undefined; resourceInputs["keepInstanceName"] = state ? state.keepInstanceName : undefined; resourceInputs["kubernetesConfig"] = state ? state.kubernetesConfig : undefined; resourceInputs["name"] = state ? state.name : undefined; resourceInputs["nodeConfig"] = state ? state.nodeConfig : undefined; resourceInputs["nodeStatistics"] = state ? state.nodeStatistics : undefined; } else { const args = argsOrState; if ((!args || args.kubernetesConfig === undefined) && !opts.urn) { throw new Error("Missing required property 'kubernetesConfig'"); } if ((!args || args.nodeConfig === undefined) && !opts.urn) { throw new Error("Missing required property 'nodeConfig'"); } resourceInputs["autoScaling"] = args ? args.autoScaling : undefined; resourceInputs["clientToken"] = args ? args.clientToken : undefined; resourceInputs["clusterId"] = args ? args.clusterId : undefined; resourceInputs["instanceIds"] = args ? args.instanceIds : undefined; resourceInputs["keepInstanceName"] = args ? args.keepInstanceName : undefined; resourceInputs["kubernetesConfig"] = args ? args.kubernetesConfig : undefined; resourceInputs["name"] = args ? args.name : undefined; resourceInputs["nodeConfig"] = args ? args.nodeConfig : undefined; resourceInputs["nodeStatistics"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(NodePool.__pulumiType, name, resourceInputs, opts); } } exports.NodePool = NodePool; /** @internal */ NodePool.__pulumiType = 'volcengine:veecp/nodePool:NodePool'; //# sourceMappingURL=nodePool.js.map