UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

262 lines 8.7 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.nodePoolsOutput = exports.nodePools = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Use this data source to query detailed information of veecp node pools * ## 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, * }, * }); * const fooNodePools = volcengine.veecp.getNodePoolsOutput({ * ids: [fooNodePool.id], * }); * ``` */ /** @deprecated volcengine.veecp.NodePools has been deprecated in favor of volcengine.veecp.getNodePools */ function nodePools(args, opts) { pulumi.log.warn("nodePools is deprecated: volcengine.veecp.NodePools has been deprecated in favor of volcengine.veecp.getNodePools"); args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("volcengine:veecp/nodePools:NodePools", { "autoScalingEnabled": args.autoScalingEnabled, "clusterId": args.clusterId, "clusterIds": args.clusterIds, "createClientToken": args.createClientToken, "ids": args.ids, "name": args.name, "nameRegex": args.nameRegex, "outputFile": args.outputFile, "statuses": args.statuses, "updateClientToken": args.updateClientToken, }, opts); } exports.nodePools = nodePools; /** * Use this data source to query detailed information of veecp node pools * ## 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, * }, * }); * const fooNodePools = volcengine.veecp.getNodePoolsOutput({ * ids: [fooNodePool.id], * }); * ``` */ /** @deprecated volcengine.veecp.NodePools has been deprecated in favor of volcengine.veecp.getNodePools */ function nodePoolsOutput(args, opts) { return pulumi.output(args).apply((a) => nodePools(a, opts)); } exports.nodePoolsOutput = nodePoolsOutput; //# sourceMappingURL=nodePools.js.map