kind-mechanic-53546
08/24/2020, 1:20 AMconst eventRouterServiceAccount = new k8s.core.v1.ServiceAccount(
"eventRouterServiceAccount",
{
apiVersion: "v1", // << Remove?
kind: "ServiceAccount", // << Remove?
metadata: {
name: "eventRouter",
namespace: "kube-system",
},
}
);
a) we already know we're creating a ServiceAccount
, b) we're specifying the version twice core.v1.
This is from kube2pulumigorgeous-egg-16927
08/24/2020, 3:29 PMkube2pulumi
https://github.com/pulumi/kube2pulumi/issues/10kind-mechanic-53546
08/25/2020, 8:20 AM