busy-air-16359
09/26/2019, 10:38 AMpulumi up
it replaces all my nodepools (although nothing changed). The diff says ~nodeConfig
. Any way to find out what the diff is?icy-engineer-10830
09/26/2019, 2:13 PMbroad-dog-22463
09/26/2019, 2:18 PMcold-car-23440
09/26/2019, 2:19 PMcold-car-23440
09/26/2019, 2:20 PMimportant-librarian-11689
09/26/2019, 2:29 PMicy-engineer-10830
09/26/2019, 2:57 PM* const instanceTemplate = new gcp.compute.InstanceTemplate("instanceTemplate", {
* // boot disk
* disks: [{}],
* machineType: "n1-standard-1",
* namePrefix: "instance-template-",
* // networking
* networkInterfaces: [{}],
* region: "us-central1",
* });
but fails on creation with: Diagnostics:
gcp:compute:InstanceTemplate (instanceTemplate):
error: gcp:compute/instanceTemplate:InstanceTemplate resource 'instanceTemplate' has a problem: "name": conflicts with name_prefix
stale-park-1622
09/26/2019, 4:26 PMawsx.ecr.Repository
&& repository.buildAndPushImage
how can I add a custom tag to the image? right now, it is being tagged as 'latest'. I would like to add a custom tag name for the image. Is this possible?
thanksnice-cat-91582
09/26/2019, 4:44 PMlambda.CallbackFunction
nice-cat-91582
09/26/2019, 4:44 PM"errorType": "TypeError",
"errorMessage": "Symbol.prototype [ @@toPrimitive ] requires that 'this' be a Symbol"
nice-cat-91582
09/26/2019, 4:45 PMlambda.CallbackFunction
generatesnice-cat-91582
09/26/2019, 4:45 PMnice-cat-91582
09/26/2019, 4:45 PMvar __fn_prototype = {};
Object.defineProperty(__fn_prototype, "constructor", { configurable: true, writable: true, value: __f1 });
__fn.prototype = __fn_prototype;
var __fn_sym = Object.create(global.Symbol.prototype);
__fn[__fn_sym] = __fn;
nice-cat-91582
09/26/2019, 4:45 PMearly-musician-41645
09/26/2019, 5:27 PMawsx
module for creating a Windows ec2 instance. Is there any way to specify that the instance should join a Microsft AD domain?
The domain controller already exists as a managed Microsoft AD directory in AWS. I can get the instance to join "seamlessly" by creating it in the console:
https://docs.aws.amazon.com/directoryservice/latest/admin-guide/launching_instance.html
Or by logging in to the instance and configuring it:
https://docs.aws.amazon.com/directoryservice/latest/admin-guide/join_windows_instance.html
How can I achieve this with Pulumi?quick-australia-29016
09/26/2019, 6:24 PMhandsome-actor-1155
09/26/2019, 6:32 PMbillowy-laptop-45963
09/26/2019, 6:54 PMbillowy-laptop-45963
09/26/2019, 7:36 PMgo test
to see if the tooling versions I have are okshy-daybreak-62210
09/26/2019, 7:55 PMworried-city-86458
09/26/2019, 8:42 PMdamp-book-35965
09/26/2019, 9:12 PMpulumi stack ls
in typescript code currently ?adamant-dress-73325
09/26/2019, 9:27 PMconst vpc = awsx.ec2.Vpc.fromExistingIds("vpc", {
privateSubnetIds: vpcPrivateSubnetIds,
publicSubnetIds: vpcPublicSubnetIds,
vpcId
});
brash-plastic-65797
09/26/2019, 9:52 PMworried-city-86458
09/27/2019, 12:19 AMworried-city-86458
09/27/2019, 12:20 AMworried-city-86458
09/27/2019, 4:57 AMconst monitoringNamespace = new k8s.core.v1.Namespace("monitoring", { metadata: { name: "monitoring" } }, { provider : provider });
function setMonitoringNamespace(obj: any) {
if (obj.metadata.namespace === undefined) {
obj.metadata.namespace = "monitoring";
}
}
const prometheusOperatorChart = new k8s.helm.v2.Chart("po", {
repo: "stable",
chart: "prometheus-operator",
namespace: "monitoring",
transformations: [ setMonitoringNamespace ],
values: {
kubeControllerManager: { enabled: false },
kubeEtcd: { enabled: false },
kubeScheduler: { enabled: false },
kubeTargetVersionOverride: k8sVersion,
prometheusOperator: { createCustomResource: false }
}
}, {
dependsOn: monitoringNamespace,
provider: provider
});
worried-city-86458
09/27/2019, 4:57 AMworried-city-86458
09/27/2019, 5:00 AMworried-city-86458
09/27/2019, 5:01 AMworried-city-86458
09/27/2019, 5:01 AM