fast-dinner-32080
04/06/2020, 6:41 PMType Name Plan
pulumi:pulumi:Stack k8s-courageous-cluster-asc-dev-k8s-c02
+ ├─ rancher2:index:NodePool workerNodePool1:asc-dev-k8s-c02-w1 create
+ ├─ rancher2:index:NodePool workerNodePool3:asc-dev-k8s-c02-w3 create
+ ├─ rancher2:index:NodePool masterNodePool:asc-dev-k8s-c02-m create
+ ├─ rancher2:index:NodePool workerNodePool2:asc-dev-k8s-c02-w2 create
+ ├─ rancher2:index:ClusterSync rancherClusterSync create
+ ├─ ascendlearning:rancher:SystemAddOnProject systemAddOnsProject create
+ ├─ rancher2:index:Project systemAddOnsProject:systemAddOnsProject create
+ ├─ rancher2:index:Namespace systemAddOnsProject:systemAddOnNamespace create
+ ├─ kubernetes:core:ServiceAccount descheduler:ServiceAccount create
+ ├─ kubernetes:<http://rbac.authorization.k8s.io:ClusterRole|rbac.authorization.k8s.io:ClusterRole> descheduler:ClusterRole create
+ ├─ kubernetes:<http://rbac.authorization.k8s.io:ClusterRoleBinding|rbac.authorization.k8s.io:ClusterRoleBinding> descheduler:ClusterRoleBinding create
+ ├─ kubernetes:core:ConfigMap descheduler:ConfigMap create
+ ├─ kubernetes:batch:CronJob descheduler:CronJob create
+ └─ kubernetes:<http://storage.k8s.io:StorageClass|storage.k8s.io:StorageClass> storageClass:vsphereStorageClass create
Apply
Type Name Status Info
pulumi:pulumi:Stack k8s-courageous-cluster-asc-dev-k8s-c02 **failed** 1 error
+ ├─ rancher2:index:NodePool workerNodePool2:asc-dev-k8s-c02-w2 created
+ ├─ rancher2:index:NodePool workerNodePool1:asc-dev-k8s-c02-w1 created
+ ├─ rancher2:index:NodePool masterNodePool:asc-dev-k8s-c02-m created
+ ├─ rancher2:index:NodePool workerNodePool3:asc-dev-k8s-c02-w3 created
+ └─ kubernetes:<http://storage.k8s.io:StorageClass|storage.k8s.io:StorageClass> storageClass:vsphereStorageClass **creating failed** 1 error
You can see the storage class is created before it shows it would in the preview.gorgeous-egg-16927
04/06/2020, 8:25 PMfast-dinner-32080
04/06/2020, 8:27 PMgorgeous-egg-16927
04/06/2020, 8:28 PMComponentResource
classes in pulumi, which is what Chart usesfast-dinner-32080
04/06/2020, 8:28 PMgorgeous-egg-16927
04/06/2020, 8:29 PMComponentResource
fast-dinner-32080
04/06/2020, 9:52 PMgorgeous-egg-16927
04/06/2020, 10:07 PMtall-librarian-49374
04/07/2020, 5:55 AM[Output] public ImmutableArray<Resource> Resources {get;set;}
should workResource
. Which error are you getting?some-kitchen-64615
04/07/2020, 7:39 AMfast-dinner-32080
04/07/2020, 3:00 PM[Output]
public Output<ImmutableArray<Resource>> Resources { get; set; }
this.Resources = Output.Create(new ImmutableArray<Resource> {(Resource)systemAddOnsProject, (Resource)systemAddOnNamespace});
contains invalid type Pulumi.Resource. Allowed types are:
String, Boolean, Int32, Double,
Nullable<...>, ImmutableArray<...> and ImmutableDictionary<string, ...> or
a class explicitly marked with the [OutputTypeAttribute].
tall-librarian-49374
04/08/2020, 6:01 AM[Output]
?fast-dinner-32080
04/08/2020, 10:18 PM