orange-tailor-85423
11/20/2018, 12:12 AMorange-tailor-85423
11/20/2018, 12:13 AMorange-tailor-85423
11/20/2018, 12:37 AMfull-dress-10026
11/20/2018, 12:46 AMPreview failed: refreshing urn:pulumi:services-prod::services::aws:ecr/repository:Repository::pulum-1111111-container: timeout while waiting for state to become 'success' (timeout: 1m0s)
full-dress-10026
11/20/2018, 12:49 AMpulumi refresh
on my stack, ECR previews all fail.full-dress-10026
11/20/2018, 12:50 AMfull-dress-10026
11/20/2018, 12:53 AMcold-coat-35200
11/20/2018, 12:09 PMaws.elasticache.ReplicationGroup
, it looks like the cluster name will be the replicationGroupId
field value, which is not auto generated and a required field, because of this, when I changed the code, pulumi was unable to create the new resource first, because
aws:elasticache:ReplicationGroup (dlv-sbx-redis-ch):
error: Plan apply failed: Error creating Elasticache Replication Group: ReplicationGroupAlreadyExists: Replication group with specified name already exists.
status code: 400, request id: 4db05f24-ecb5-11e8-9c78-b503b112c20a
Is it possible to let pulumi handle the naming in this case too? Or maybe the deletetBeforeCreate
should be usedbusy-umbrella-36067
11/20/2018, 6:56 PMdamp-pillow-67781
11/20/2018, 9:47 PM<cluster>-gp2
instead of just gp2
, which I need to specify the storageclass in some of the helm deployment.busy-umbrella-36067
11/20/2018, 9:53 PMbusy-umbrella-36067
11/20/2018, 9:53 PMbusy-umbrella-36067
11/20/2018, 9:53 PMstale-holiday-22431
11/20/2018, 10:05 PMstale-holiday-22431
11/20/2018, 10:18 PMfull-dress-10026
11/20/2018, 10:37 PMhealthCheck
param [1] on a cloudAws.Service
container?
[1] https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definition_parameters.html#container_definition_healthcheckorange-tailor-85423
11/20/2018, 10:59 PMbulky-policeman-29913
11/21/2018, 2:13 AMbulky-policeman-29913
11/21/2018, 2:13 AMancient-match-5870
11/21/2018, 12:46 PMnew aws.cloudwatch.MetricAlarm
with dimensions: [{VpnId: "..."}]
. Creating the Alarm with Pulumi ends up in a wrong formatted dimension. Can you verify that this a bug or a wrong dimensions definition on my side?gentle-notebook-84651
11/21/2018, 2:47 PMpulumi plugin install resource aws v0.16.3-dev.1542649495
[resource plugin aws-0.16.3-dev.1542649495] installing
error: [resource plugin aws-0.16.3-dev.1542649495] downloading from <https://api.pulumi.com>: failed to download plugin: [404] 404 page not found
gentle-notebook-84651
11/21/2018, 2:47 PMabundant-cpu-32345
11/21/2018, 4:26 PMDiagnostics:
aws:ecs:Service (django-app-worker):
error: Plan apply failed: 1 error occurred:
* updating urn:pulumi:backend-dev::django-deploy::cloud:service:Service$aws:ecs/service:Service::django-app-worker: timeout while waiting for state to become 'true' (last state: 'false', timeout: 10m0s)
aws:ecs:Service (django-app):
error: Plan apply failed: 1 error occurred:
* updating urn:pulumi:backend-dev::django-deploy::cloud:service:Service$aws:ecs/service:Service::django-app: timeout while waiting for state to become 'true' (last state: 'false', timeout: 10m0s)
Any idea where to start debugging this issue?early-musician-41645
11/21/2018, 6:35 PMfull-dress-10026
11/21/2018, 7:27 PMcloud-aws:ecsAutoClusterInstanceRolePolicyARNs
and cloud-aws:computeIAMRolePolicyARNs
?early-musician-41645
11/21/2018, 11:00 PMearly-musician-41645
11/21/2018, 11:01 PMbest-salesclerk-82359
11/22/2018, 1:32 PMroles/storage.admin
(whats also weird is that using roles/editor
works). Using gcloud projects add-iam-policy-binding ...
however works as expected and the storage admin role is associated
* I can't get the k8s.core.v1.Secret
class to accept the created service account key as the data for the secret
I am using the following code, any help is greatly appreciated!
js
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
import * as k8s from "@pulumi/kubernetes";
const gcloudProjectId = '...'
const resourceName = "team-v1-tyll-kaniko";
const serviceAccount = new gcp.serviceAccount.Account(`${resourceName}`, {
accountId: "team-v1-tyll-kaniko",
displayName: "team-v1-tyll-kaniko",
project: gcloudProjectId
});
const serviceAccountKey = pulumi
.all([serviceAccount.email, serviceAccount.project])
.apply(([email, project]) => {
return new gcp.serviceAccount.Key(`${resourceName}-key`, {
serviceAccountId: `projects/${project}/serviceAccounts/${email}`
});
});
const serviceAccountBinding = pulumi
.all([serviceAccount.email, serviceAccount.project])
.apply(([email, project]) => {
return new gcp.serviceAccount.IAMBinding(`${resourceName}-binding`, {
// Throws with Role roles/storage.admin is not supported for this resource.
// role: "roles/storage.admin",
role: "roles/editor",
serviceAccountId: `projects/${project}/serviceAccounts/${email}`,
members: [`serviceAccount:${email}`]
});
});
const secret = new k8s.core.v1.Secret("kaniko-secret", {
type: "generic",
metadata: { name: "kaniko-secret" },
data: {
// Throws with ObjectMeta: v1.ObjectMeta: TypeMeta: Kind: Data: decode base64: illegal base64 data at input byte 17, parsing 205
"kaniko-secret": serviceAccountKey
}
});
blue-dentist-627
11/23/2018, 12:59 AMconst s3EndpointTarget = new aws.dms.Endpoint('my-dms-endpoint', {
engineName: 's3',
endpointId: 'my-dms-endpoint,
endpointType: 'target',
serviceAccessRole: 'arn:aws:iam::xxxxxx:role/dms-replication',
extraConnectionAttributes: 'addColumnName=true;compressionType=GZIP;csvDelimiter=,;csvRowDelimiter=\n',
s3Settings: {
bucketName: 'my-s3-bucket',
ServiceAccessRoleArn: 'arn:aws:iam::xxxxx:role/dms-replication',
},
});
if someone have an idea ?eager-area-86739
11/25/2018, 5:45 PMpulumi
via Hombrew. Currently the version is 0.16.5
When I try to create a simple stack as :
"use strict";
const pulumi = require("@pulumi/pulumi");
const aws = require("@pulumi/aws");
const queue = new aws.sqs.Queue("queue");
I have the following error:
Previewing update (some-stack-testing):
Type Name
pulumi:pulumi:Stack some-stack
└─ pulumi:providers:aws default
Diagnostics:
pulumi:providers:aws (default):
error: could not read plugin [/Users/yolo/.pulumi/plugins/resource-aws-v0.16.2/pulumi-resource-aws] stdout: EOF
error: an error occurred while advancing the preview
The package.json
looks like:
{
"name": "some-stack",
"main": "index.js",
"dependencies": {
"@pulumi/aws": "latest",
"@pulumi/pulumi": "latest"
}
}
Any ideas?
Cheers