Skip to content
This repository has been archived by the owner on Nov 18, 2024. It is now read-only.

Scaleway require a private network #99

Open
claudusd opened this issue Oct 20, 2023 · 0 comments
Open

Scaleway require a private network #99

claudusd opened this issue Oct 20, 2023 · 0 comments

Comments

@claudusd
Copy link

Scaleway will deprecate the full public cluster and require to put K8S cluster in a private network. This will remove the public IP attached to the node to access to internet. See more information here

This will required to add the attribute private_network_id in the Scaleway's resource scaleway_k8s_cluster We use this resource here.

Private network are created in a VPC (Virtual private Cloud) by Scaleway.

resource "scaleway_vpc_private_network" "kapsule" {
  name = "pn_kapsule"
}

resource "scaleway_k8s_cluster" "k8s_cluster" {
  private_network_id = scaleway_vpc_private_network.kapsule.id
}

Before to change this in Kubic will need to answer to this questions:

  • Do we need to create a Gateway to access to Internet ?
  • Do we need to create the load balancer to be accessible by Internet ?
  • What are the procedure for running cluster ?
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant