limited-rainbow-51650
12/11/2020, 12:33 PMclever-crowd-18899
12/11/2020, 4:21 PMTypeError: __init__() got an unexpected keyword argument 'status'
error: an unhandled error occurred: Program exited with non-zero exit code: 1
The first time I got this error I tried to apply the CRD with pulumi yaml, but I got the same error.clever-crowd-18899
12/11/2020, 4:21 PMclever-crowd-18899
12/11/2020, 4:22 PMclever-crowd-18899
12/11/2020, 4:23 PMclever-crowd-18899
12/11/2020, 5:05 PMbig-account-56668
12/12/2020, 10:23 AM"delete": true
, how can I then import the new state into the backend? pulumi import --file x.json
does not work.proud-pizza-80589
12/13/2020, 4:27 PMicy-london-56932
12/13/2020, 5:14 PMvault kv patch
proud-pizza-80589
12/13/2020, 6:01 PMgcp:container:Cluster launchpad error: gcp:container/cluster:Cluster resource 'launchpad' has a problem: ConflictsWith
But not what it conflicts with. I have no such cluster in GKE.fresh-summer-65887
12/13/2020, 9:43 PMworried-queen-62794
12/13/2020, 10:11 PMrefresh
as it fails with:
aws:codedeploy:DeploymentGroup (Platform):
error: Preview failed: refreshing urn:pulumi:prod::tlayen-infrastructure::aws:codedeploy/deploymentGroup:DeploymentGroup::Platform: 1 error occurred:
* ApplicationDoesNotExistException: No application found for name: Platform-88112c2
fierce-ability-58936
12/13/2020, 10:30 PMremote
mean in Resource
constructor?
https://www.pulumi.com/docs/reference/pkg/nodejs/pulumi/pulumi/#Resource-constructorworried-queen-62794
12/13/2020, 10:35 PMpulumi:providers:datadog (default_3_19_3):
error: no resource plugin 'datadog-v3.19.3' found in the workspace or on your $PATH, install the plugin using `pulumi plugin install resource datadog v3.19.3`
It should be looking for 2.13.0. 3.19.3 is the version of the AWS plugin.worried-queen-62794
12/14/2020, 2:04 AMdamp-tiger-87899
12/14/2020, 11:27 AMwet-sunset-4939
12/14/2020, 11:33 AMelegant-island-39916
12/14/2020, 2:45 PMprehistoric-nail-50687
12/14/2020, 4:18 PMsticky-salesmen-55696
12/14/2020, 5:27 PMacceptable-energy-6360
12/14/2020, 7:20 PMbucketName
) during runtime such as from a lambda handler from a separate file using the pulumi SDK?sparse-gold-89283
12/14/2020, 8:52 PMpulumi up
? Use case is a larger project based on serverless framework that's workflow is specific to the serverless framework. I would still like to be able to use getOutputValue
like we do for sharing values across pulumi projects or cli to dump outputs to a file for setting vpc settings and s3 buckets created by our pulumi infrastructure project.loud-battery-37784
12/14/2020, 9:14 PMpulumi up
run gracefully? Use case is we’re setting an env variable in a shell script in CICD. If that variable doesn’t exist I want to not kick out of the process. I implemented this (JS/TS):
const imageVersion = process.env.IMAGE_VERSION || '';
if (!imageVersion) {
throw new Error(`Image version is not present!`);
}
Which works but when up
exits this way the outputs are destroyed which I don’t want to have happen.mysterious-oyster-86659
12/15/2020, 1:02 AMpulumi refresh
. The following block shows the error:
Diagnostics:
aws:redshift:SnapshotScheduleAssociation (redshift-snapshot-schedule-association):
error: Preview failed: refreshing urn:pulumi:dev1::ucboitlake::aws:redshift/snapshotScheduleAssociation:SnapshotScheduleAssociation::redshift-snapshot-schedule-association: 1 error occurred:
* Unable to find Redshift Cluster (dim-redshift-cluster) Snapshot Schedule (redshift-snapshot-schedule) Association
pulumi:pulumi:Stack (ucboitlake-dev1):
error: preview failed
This is occurring (I assume) because I manually used the console to delete my Redshift cluster, which automatically removed all snapshot information. That's all good and well. I've done this kind of thing before and pulumi refresh
detects the changes without errors occurring. However, after introducing custom snapshot functionality and manually deleting via the console, this is the outcome.
Does anyone know a workaround or solution for this type of problem?colossal-easter-73659
12/15/2020, 3:35 AMlittle-cartoon-10569
12/15/2020, 4:24 AMsteep-angle-29984
12/15/2020, 10:27 AMmysterious-oyster-86659
12/15/2020, 3:06 PMprehistoric-nail-50687
12/15/2020, 4:04 PMeager-lion-7694
12/15/2020, 6:24 PMpulumi up
with the error after about 10 minutes:
error waiting for service (service arn) to reach a steady state: ResourceNotReady: exceeded wait attempts
I see one task in ithe service with the status RUNNING
, but the task definition starts with [INACTIVE]
. I noticed that my working fargate service includes the message has reached a steady state.
in the Events tab. What determines a “steady state” for a Fargate service? Does this have anything to do with the desiredCount
of tasks while deploying?eager-lion-7694
12/15/2020, 6:24 PMpulumi up
with the error after about 10 minutes:
error waiting for service (service arn) to reach a steady state: ResourceNotReady: exceeded wait attempts
I see one task in ithe service with the status RUNNING
, but the task definition starts with [INACTIVE]
. I noticed that my working fargate service includes the message has reached a steady state.
in the Events tab. What determines a “steady state” for a Fargate service? Does this have anything to do with the desiredCount
of tasks while deploying?desiredCount
to 2 didnt do anything. But I noticed an error in one of the containers but not the other? how would that happen