quiet-architect-74241
10/06/2021, 12:26 PMchilly-hairdresser-56259
10/12/2021, 10:33 PMApply
statement.chilly-magazine-4507
10/21/2021, 12:10 AMlimited-carpenter-34991
10/22/2021, 9:47 AMminiature-leather-70472
10/22/2021, 3:58 PMchilly-hairdresser-56259
10/25/2021, 8:45 PMSystem.Double
rather than a System.String
even though the argument indicates int
not System.String
Error in the comments.rapid-soccer-18092
10/26/2021, 9:59 AMenv: []
- name: DD_APM_ENABLED
value: true
- name: DD_APM_NON_LOCAL_TRAFFIC
value: true
Pulumi definition:
var datadogChart = new Chart("datadog-chart",
new ChartArgs
{
Chart = ChartName,
Version = args.ChartVersion,
Namespace = args.Namespace,
Values = new Dictionary<string, object>
{
// Chart values schema can be found here: <https://github.com/DataDog/helm-charts/blob/main/charts/datadog/values.yaml>
["datadog"] = new Dictionary<string, object>
{
["apiKey"] = args.ApiKey,
["site"] = "<http://datadoghq.eu|datadoghq.eu>",
["apm"] = new Dictionary<string, object>
{
["portEnabled"] = true,
},
// Below is incorrect - how do I provide this??
["env"] = new List<Dictionary<string, object>>
{
new Dictionary<string, object>
{
["name"] = "DD_APM_ENABLED",
["value"] = true
},
new Dictionary<string, object>
{
["name"] = "DD_APM_NON_LOCAL_TRAFFIC",
["value"] = true
}
}
}
});
worried-city-86458
10/27/2021, 6:16 AMable-camera-57198
11/02/2021, 2:45 PMable-camera-57198
11/02/2021, 5:47 PMGet*
methods:
var defaultNetwork = GetNetwork.InvokeAsync(new()
{
Network = "default",
});
⢠Am I supposed to await this? If so, how do I do so when Pulumi stacks all appear to be in constructors?
⢠Is there any way to wrap my use of GetNetwork
with some equivalent to DependsOn
?
Here's the equivalent that I'm currently doing in Terraform:
data "google_compute_network" "default" {
depends_on = [
google_project_service.compute,
]
name = "default"
}
enough-garden-22763
11/03/2021, 9:00 PM[sdk/dotnet] - Fix a race condition when detecting exceptions in stack creation.Ā #8294
- the exception reporting is a lot more reliable with this release.full-winter-70537
11/10/2021, 6:12 AMCreateMode
but after I've copied it and remove the "Copy" create mode, it thinks it's a state change and wants to delete that database and create new one.brave-winter-60074
11/18/2021, 7:11 AMDiagnostics:
pulumišulumi:Stack (services-orchestration-dev-stejsj-t2):
A fatal error occurred. The required library libhostfxr.dylib could not be found.
If this is a self-contained application, that library should exist in [/Users/sejensen/dev/chipper-orchestration/infra/bin/Debug/netcoreapp3.1/].
If this is a framework-dependent application, install the runtime in the global location [/usr/local/share/dotnet/x64] or use the DOTNET_ROOT environment variable to specify the runtime location or register the runtime location in [/etc/dotnet/install_location].
The .NET Core runtime can be found at:
- https://aka.ms/dotnet-core-applaunch?missing_runtime=true&arch=x64&rid=osx.10.17-x64
error: an unhandled error occurred: Program exited with non-zero exit code: 131millions-journalist-34868
11/20/2021, 11:00 PMacoustic-rose-89683
11/24/2021, 6:39 AMruntime:binary
option through cli ? Or maybe other methods to dynamically change the source which is used to by the cli?boundless-tailor-35598
11/30/2021, 3:54 PMboundless-tailor-35598
12/01/2021, 1:59 PMboundless-tailor-35598
12/01/2021, 3:48 PMable-camera-57198
12/03/2021, 2:56 AMflaky-school-82490
12/12/2021, 4:16 PMpublic MyStack()
{
// only do this if MyOutput has not been set by a previous deployment
MyOutput= MyValue;
}
[Output]
public Output<string> MyOutput { get; set; }
sparse-butcher-73713
12/22/2021, 1:04 PMGrpc.Core.RpcException: Status(StatusCode="Unknown", Detail="setting args: copying input "helmOptions": provider.IngressControllerArgs.HelmOptions is typed as *helm.ReleaseType but must be a type that implements pulumi.Input or pulumi.Output for input with dependencies", DebugException="Grpc.Core.Internal.CoreErrorDetailException: {"created":"@1640178247.750000000","description":"Error received from peer ipv4:127.0.0.1:57858","file":"..\..\..\src\core\lib\surface\<http://call.cc|call.cc>","file_line":1068,"grpc_message":"setting args: copying input "helmOptions": provider.IngressControllerArgs.HelmOptions is typed as *helm.ReleaseType but must be a type that implements pulumi.Input or pulumi.Output for input with dependencies","grpc_status":2}")
at async Task<RegisterResourceResponse> Pulumi.GrpcMonitor.RegisterResourceAsync(Resource resource, RegisterResourceRequest request)
at async Task<(string urn, string id, Struct data, ImmutableDictionary<string, ImmutableHashSet<Resource>> dependencies)> Pulumi.Deployment.RegisterResourceAsync(Resource resource, bool remote, Func<string, Resource> newDependency, ResourceArgs args, ResourceOptions options)
at async Task<(string urn, string id, Struct data, ImmutableDictionary<string, ImmutableHashSet<Resource>> dependencies)> Pulumi.Deployment.ReadOrRegisterResourceAsync(Resource resource, bool remote, Func<string, Resource> newDependency, ResourceArgs args, ResourceOptions options)
at async Task Pulumi.Deployment.CompleteResourceAsync(Resource resource, bool remote, Func<string, Resource> newDependency, ResourceArgs args, ResourceOptions options, ImmutableDictionary<string, IOutputCompletionSource> completionSources)
at async Task<T> Pulumi.Output<T>.GetValueAsync(T whenUnknown)
at async Task<string> Pulumi.Deployment+EngineLogger.TryGetResourceUrnAsync(Resource resource)
sparse-butcher-73713
12/22/2021, 1:04 PMsparse-butcher-73713
12/22/2021, 1:05 PMvar ingress = new IngressController("nginx", new IngressControllerArgs
{
HelmOptions = new ReleaseArgs
{
Chart = "ingress-nginx",
Namespace = appServicesNamespace.Metadata.Apply(x => x.Name)
},
Controller = new ControllerArgs
{
PublishService = new ControllerPublishServiceArgs
{
Enabled = true
}
}
});
sparse-butcher-73713
12/22/2021, 4:31 PMsparse-butcher-73713
12/22/2021, 4:31 PMsparse-butcher-73713
12/22/2021, 4:32 PMsparse-butcher-73713
12/22/2021, 4:32 PMDependsOn = cluster
and Parent = cluster
but nothing - also stumbled upon to this https://github.com/pulumi/pulumi-kubernetes/issues/861 but seems to have been solved for the opposite problemmillions-journalist-34868
12/27/2021, 3:14 PMwet-sunset-4939
01/09/2022, 6:25 AMwet-sunset-4939
01/10/2022, 1:17 PMwet-sunset-4939
01/10/2022, 1:17 PMechoing-dinner-19531
01/10/2022, 1:55 PM