fast-dinner-32080
03/12/2020, 4:47 PMfast-dinner-32080
03/14/2020, 8:22 PMSystem.InvalidOperationException: dictionary contains invalid type System.Object.
I see you merged a fix https://github.com/pulumi/pulumi/pull/4023 but I am unsure how to make sure I am using the version that includes this. I have v1.12.1 installed and using kubernetes plugin/nuget 1.6.0-alpha.1583869930+g9c001ff9fast-dinner-32080
03/16/2020, 4:21 PMSystem.MissingMethodException: Method not found: 'Void Pulumi.CustomResource..ctor(System.String, System.String, Pulumi.ResourceArgs, Pulumi.ResourceOptions)'
Looks to be related to the change from ResourceOptions to ComponentResourceOptions. I wonder if this should have been a deprecation instead of a breaking change?fast-dinner-32080
03/17/2020, 4:19 PMbetter-rainbow-14549
03/17/2020, 4:44 PMfast-dinner-32080
03/17/2020, 5:28 PMfast-dinner-32080
03/17/2020, 6:13 PMfast-dinner-32080
03/17/2020, 8:03 PMtall-librarian-49374
03/17/2020, 8:12 PMfast-dinner-32080
03/18/2020, 1:47 AMpowerful-football-81694
03/20/2020, 12:37 PMflat-mouse-20634
03/22/2020, 4:03 AMfast-dinner-32080
03/25/2020, 8:27 PMfancy-nightfall-60106
03/30/2020, 8:17 AMMSBUILD : error MSB1003: Specify a project or solution file. The current working directory does not contain a project or solution file.
sparse-piano-12937
03/30/2020, 2:16 PMgreat-postman-59271
03/31/2020, 6:30 AMfast-dinner-32080
03/31/2020, 7:03 PMvar rancherHelmRelease = new Pulumi.Kubernetes.Helm.V3.Chart("rancher",
new ChartArgs
{
Repo = "rancher-latest",
Chart = "rancher",
Version = config.Require("rancherVersion"),
Namespace = cattleSystemNamespace.Metadata.Apply(x => x.Name),
Values =
{
{"ingress.tls.source", "external"},
{"tls", "external"},
{"hostname", config.Require("rancherHost")},
{"debug", config.RequireBoolean("rancherEnableDebug")},
{"replicas", 3}
}
},
new ComponentResourceOptions
{
Provider = kubernetesProvider,
DependsOn =
{
rkeCluster,
cattleSystemNamespace
}
});
var rancherBootstrapProvider = new Pulumi.Rancher2.Provider("rancherBootstrapProvider",
new Pulumi.Rancher2.ProviderArgs
{
ApiUrl = $"https://{config.Require("rancherHost")}",
Bootstrap = true
});
// Initially setup server the first time creating admin account
var rancherBootstrap = new Pulumi.Rancher2.Bootstrap("rancherBootstrap",
new BootstrapArgs
{
Password = commonEnvSecret.Data.Apply(x => (string)x["rancher_server_admin_password"]),
Telemetry = false
},
new CustomResourceOptions
{
Provider = rancherBootstrapProvider,
DependsOn =
{
rancherHelmRelease
}
});
bored-activity-40468
04/05/2020, 4:25 PMdebug: No assume_role block read from configuration
plain-tiger-79744
04/06/2020, 10:29 AMmysterious-australia-14256
04/06/2020, 8:54 PMplain-tiger-79744
04/08/2020, 7:26 AMbrainy-nest-61978
04/10/2020, 9:28 AMbrainy-nest-61978
04/10/2020, 11:07 AMpulumi up --tracing=file:./up.trace
and I've installed appdash to try to view them. but not sure how to use it. I've also tried running the appdash listener appdash serve
so that I can send try to send the trace directly there (if thats possible), but it exits immediately with the following message :
appdash collector listening on :7701 (plaintext TCP (no security))
appdash HTTP server listening on :7700
rename C:\Users\MICHAE~1.GUI\AppData\Local\Temp\appdash785531047 /tmp/appdash.gob: The system cannot find the path specified.
cold-caravan-83486
04/14/2020, 2:17 PMSystem.MissingMethodException: Method not found: 'Pulumi.IDeployment Pulumi.Deployment.get_Instance()'.
at Pulumi.Azure.Core.GetSubscription.InvokeAsync(GetSubscriptionArgs args, InvokeOptions options)
?plain-tiger-79744
04/17/2020, 11:54 AMfancy-nightfall-60106
04/23/2020, 8:32 AMvar p = new Config().Require("parameter")
wonderful-football-26193
04/24/2020, 9:58 AMConfigFile
into an Azure K8s. How do I get the ProviderResource
from my Pulumi.Azure.ContainerService.KubernetesCluster
instance to use it in ComponentResourceOptions.Provider
of ConfigFile()
?mysterious-australia-14256
04/25/2020, 3:24 PMvar rgName = proj.RequireObject("ResourceGroupName").Apply(name => name.ToString());
rgName ends up being of type Output<string?> i.e. it can be null because this is what ToString returns even though I'm using RequireObject
When I then cone to use rgName in my code to get the resource group
var rg = rgName.Apply(rgName => GetResourceGroup.InvokeAsyn(new GetResourceGroupArgs { Name = rgName } ));
I get a warning about a possible null reference assignment as I am passing in Output<string?>? rather than Output<string> which is what GetResourceGroupArgs wants for Name.
The code works and I can hide the error using ! (i.e. { Name = rgName! }) but is there a cleaner way to do this i.e. get the value from RequireObject as Output<string> in the first place rather than Output<string?>nutritious-judge-27316
04/30/2020, 1:20 PMbest-receptionist-98400
05/05/2020, 1:14 PMbest-receptionist-98400
05/05/2020, 1:14 PMtall-librarian-49374
05/06/2020, 7:07 PMbest-receptionist-98400
05/06/2020, 8:28 PMfaint-table-42725
05/06/2020, 8:54 PMbest-receptionist-98400
05/06/2020, 9:27 PM