https://pulumi.com logo
Title
t

tall-shoe-66375

04/20/2021, 3:45 PM
CIVO Kubernetes Cluster error, Network Hello I’m trying to launch a PoC with Pulumi-Civo, it triggers an error:
error: [ERR] failed to create the kubernets cluster: DatabaseNetworkLookupError: Failed to lookup a network within the internal database
This is my code to create the Kubernetes Cluster on Civo
export const kluster = new civo.KubernetesCluster("poc-k8s",
{
    name: "Civo PoC GitOps",
    kubernetesVersion: config.civo.k3version,
    numTargetNodes: config.civo.nodes,
    targetNodesSize: config.civo.nodeSize,
    tags: "poc gitops webmago",
    applications: "argo cert-manager",
},
{provider: civo_provider}
);
The documentation mentions the
network_id
, nor in the pulumi interface is implemented https://www.civo.com/api/kubernetes#listing-applications