incalculable-engineer-92975
09/19/2019, 8:46 PMpurple-appointment-43233
09/19/2019, 9:05 PMworried-city-86458
09/20/2019, 12:08 AMworried-city-86458
09/20/2019, 12:11 AMworried-city-86458
09/20/2019, 12:28 AMworried-city-86458
09/20/2019, 3:19 AMconst fluentBit = new k8s.yaml.ConfigFile("fluent-bit.yml", {}, { parent: cluster, provider: cluster.provider });
I had to specify the provider too - I would've thought it could deduce that from the parent?worried-city-86458
09/20/2019, 3:21 AMdamp-room-71337
09/20/2019, 10:49 AMdamp-room-71337
09/20/2019, 10:50 AMpulumi up --config myAppImageTag=${CIRCLE_SHA}
but that doesn’t seem to be supported. Do pulumi config set ...
outside the orb first or something?brash-plastic-65797
09/20/2019, 4:37 PMincalculable-diamond-5088
09/20/2019, 5:50 PMstable/prometheus-redis-exporter
helm chart fails to install ServiceMonitor
. Probably because of the following line:
{{- if and ( .Capabilities.APIVersions.Has "<http://monitoring.coreos.com/v1|monitoring.coreos.com/v1>" ) ( .Values.serviceMonitor.enabled ) }}
in https://github.com/helm/charts/blob/master/stable/prometheus-redis-exporter/templates/servicemonitor.yaml
Is there a workaruond?quaint-queen-45003
09/20/2019, 6:35 PMbrash-plastic-65797
09/20/2019, 6:54 PMworried-engineer-33884
09/20/2019, 7:04 PMadamant-dress-73325
09/20/2019, 8:36 PMtask.run({ cluster });
on a FargateTaskDefinition at the top-level of our pulumi program during update? We are trying to run a one-off task inside a container, without needing lambda like in https://www.pulumi.com/docs/guides/crosswalk/aws/ecs/#running-fire-and-forget-tasks .colossal-room-15708
09/21/2019, 7:51 AMpulumi preview
right after it successfully deployed the stack and it's now saying that it wants to replace the cosmosDB database. Why is that?
Looks like this all starts because the consistencyPolicy
needs updating?!
cosmos_db_account = Account(
"cosmosdbaccount",
consistency_policy={
"consistencyLevel": "Strong",
"maxIntervalInSeconds": 5,
"maxStalenessPrefix": 10
},
geo_locations=[
{
"location": resource_group.location,
"failoverPriority":0
}
],
kind="GlobalDocumentDB",
location=resource_group.location,
offer_type="Standard",
resource_group_name=resource_group.name
)
I check the consistency setting in the Azure portal and it shows that it's set to "Strong", so no idea why pulumi thinks it has to reconfigure it to "Strong" and then replace all the other resources.
When I execute pulumi up
it applies a change to cosmosDB, not to any of the other resources it said it would. Once done, I can run pulumi preview
again and I get the same output as before where pulumi thinks it has to update and even replace multiple resources.big-nail-28315
09/21/2019, 7:53 PMthankful-optician-22583
09/23/2019, 4:58 PMthankful-optician-22583
09/23/2019, 4:58 PMthankful-optician-22583
09/23/2019, 5:04 PMbillowy-laptop-45963
09/23/2019, 6:14 PMadamant-dress-73325
09/23/2019, 7:38 PMnode-pre-gyp ERR! Completion callback never invoked!
node-pre-gyp ERR! System Darwin 18.7.0
node-pre-gyp ERR! command "/usr/local/Cellar/node/12.6.0/bin/node" "/Users/snip/projects/snip/deployment/node_modules/grpc/node_modules/.bin/node-pre-gyp" "install" "--fallback-to-build" "--library=static_library"
node-pre-gyp ERR! cwd /Users/snip/projects/snip/deployment/node_modules/grpc
node-pre-gyp ERR! node -v v12.6.0
node-pre-gyp ERR! node-pre-gyp -v v0.13.0
billowy-laptop-45963
09/23/2019, 9:03 PM<http://github.com/pulumi/pulumi/pkg/resource/deploy/providers/registry.go:326:30|github.com/pulumi/pulumi/pkg/resource/deploy/providers/registry.go:326:30>: multiple-value uuid.NewV4() in single-value context
billowy-laptop-45963
09/23/2019, 9:08 PMflat-guitar-86436
09/23/2019, 10:24 PM.apply
multiple `Output`s ?
/**
* DevOps Role
*
* @description role to be assumed only by IAM entities in the Admin Account.
*/
export const devopsRole = new aws.iam.Role(`${INFRA_CONFIG.ORG_NAME}-devops`, {
assumeRolePolicy: adminAccount.id.apply(id =>
JSON.stringify({
Version: '2012-10-17',
Statement: [
{
Action: 'sts:AssumeRole',
Principal: {
AWS: [id]
},
Effect: 'Allow',
Sid: ''
}
]
})
)
});
elegant-crayon-4967
09/23/2019, 11:33 PMClusters: EKS - Hello World!
tutorial, I updated my pulumi.yaml to use a profile and getting this error unable to recognize "/var/folders/xm/_hfzjmqs3571_r9_myjkmstm0000gn/T/tmp-767539RB6eLkfe2Z.tmp": Unauthorized
little-garage-43399
09/24/2019, 12:07 AMfancy-translator-86814
09/24/2019, 2:23 AMincalculable-engineer-92975
09/24/2019, 3:48 PMincalculable-engineer-92975
09/24/2019, 3:48 PM