worried-flower-49798
11/10/2020, 1:55 PMshy-football-10348
11/10/2020, 6:13 PMshy-football-10348
11/10/2020, 6:16 PMUploadLayerPart
events in cloudtrail so i guess its still working on it although im not really sureshy-football-10348
11/10/2020, 6:18 PMcareful-nail-88325
11/10/2020, 6:24 PMcareful-nail-88325
11/10/2020, 6:24 PMshy-football-10348
11/10/2020, 6:36 PMshy-football-10348
11/10/2020, 6:37 PMPulumi.yaml
file which contains:
───────┬────────────────────────────────────────────────────────────────────────
│ File: Pulumi.yaml
───────┼────────────────────────────────────────────────────────────────────────
1 │ name: notebook-ecs-infra
2 │ runtime:
3 │ name: python
4 │ description: A minimal AWS Python Pulumi program
───────┴───────────────────────────────────────────────────────
i have read online this is where pulumi stack ls
reads from, so not sure why its vanishingshy-football-10348
11/10/2020, 6:38 PMjupyterhub-ecs-infra
prehistoric-shoe-5168
11/10/2020, 6:44 PMprehistoric-shoe-5168
11/11/2020, 1:37 AMbreezy-butcher-78604
11/11/2020, 5:35 AMfailed to verify snapshot
no matter what resources i target with the update. any tips on where to start trying to fix this?dazzling-sundown-39670
11/11/2020, 10:58 AMpulumi.dynamic.ResourceProvider
, but it seems the context is all wrong when running stuff inside it. This is basically my code:
const baseImageProvider: pulumi.dynamic.ResourceProvider = {
create(inputs) {
const image = repository.buildAndPushImage(inputs.buildOptions);
return Promise.resolve({
id: inputs.hash,
outs: {
image,
hash: inputs.hash,
},
});
},
update(id, olds, news) {
if (olds.hash === news.hash) {
return Promise.resolve({
outs: olds,
});
}
const image = repository.buildAndPushImage(news.buildOptions);
return Promise.resolve({
outs: {
image,
hash: news.hash,
},
});
},
};
But I'm getting the following error: Error: Program run without the Pulumi engine available; re-run using the pulumi CLI
. Any suggestions on how to solve this? Another solution would also be welcomesalmon-portugal-93186
11/11/2020, 12:55 PM"render-yaml"
provider. I'd like to try Pulumi as a replacement for our already existing YAML generation tools that we use in our gitops repository (holding desired state for 12 EKS clusters).
However, I can't seem to be able to remove the autoNaming
functionality of the Kubernetes resources. Since I'm generating YAML directly, I don't want Pulumi to generate unique suffixes at all. I'd like to generate the exact same resource names we already have deployed.
Is there any way to do this?
I saw some discussions/proposals on Github, but none of them works for me.
cc @calm-apple-46440 @gorgeous-egg-16927
Thanks!
Vojtechicy-jordan-58549
11/11/2020, 1:26 PMpulumi up
, got a trace results and this specific LanguageRuntime takes 1m14sec, out form whole pulumi plan
(1m17sec). Any ideas?proud-afternoon-49521
11/11/2020, 4:39 PMhundreds-toddler-20724
11/11/2020, 9:56 PMhundreds-toddler-20724
11/12/2020, 12:04 AMcould not make instance of 'azure:cdn/profile:Profile': name 'test-proj-dev-spa-cdn' plus 7 random chars is longer than maximum length 24
But the Azure documentation says the limit is 260. https://docs.microsoft.com/en-us/azure/azure-resource-manager/management/resource-name-rules#microsoftcdnmammoth-school-22886
11/12/2020, 12:27 AMpulumi up
can't detect the change. Since the code is set with a string type Filename field, I think it may be expected that pulumi fails to detect the change. Looking for a way to update code, without updating other configs.mammoth-school-22886
11/12/2020, 12:36 AMstocky-spoon-28903
11/12/2020, 12:39 AMhundreds-toddler-20724
11/12/2020, 2:16 AMquiet-wolf-18467
full-bear-42554
11/12/2020, 3:34 PMfull-bear-42554
11/12/2020, 3:34 PMfull-bear-42554
11/12/2020, 3:35 PMfull-bear-42554
11/12/2020, 3:35 PMfull-bear-42554
11/12/2020, 3:35 PMpowerful-printer-57241
11/12/2020, 4:29 PM- task: Pulumi@1
inputs:
azureSubscription: ${{ parameters.azureSubscription }}
command: up
args: --yes
cwd: ${{ parameters.pulumiProjectDirectory }}
stack: ${{ parameters.stackName }}
However, it fails with
pulumi:pulumi:Stack Server.Environments-FeatureEnvironment-21103 Determining projects to restore...
pulumi:pulumi:Stack Server.Environments-FeatureEnvironment-21103 D:\a\1\s\src\Server.Environments\Server.Environments.csproj : error NU1101: Unable to find package Server.Library. No packages exist with this id in source(s): Microsoft Visual Studio Offline Packages, <http://nuget.org|nuget.org>
pulumi:pulumi:Stack Server.Environments-FeatureEnvironment-21103 Failed to restore D:\a\1\s\src\Server.Environments\Server.Environments.csproj (in 14.39 sec).
pulumi:pulumi:Stack Server.Environments-FeatureEnvironment-21103 Build FAILED.
The reason apparently is that it ignores the Server.Environments\.nuget\NuGet.config
file to restore packages. In the config there is a private feed configured where Server.Library is available.
How to tell the task it should use the NuGet.config
file? Thanks!full-bear-42554
11/12/2020, 5:27 PM