Learn how to enable and disable API server admission plugins and about other useful customizations to the OVHcloud Managed Kubernetes cluster configuration.
The OVHcloud Managed Kubernetes service provides you with Kubernetes clusters without the hassle of installing or operating them. At OVHcloud, we like to provide you with the best products and services, which is why we give you the ability to customize the managed components of your Kubernetes: CoreDNS, IPVS, and even API server admission plugins to enable and disable on your OVHcloud Managed Kubernetes clusters.
Requirements
- an OVHcloud Managed Kubernetes cluster
Instructions
AlwaysPullImages
admission plugin is customizable for the moment. It is enabled by default for security purposes, but it can be disabled to prevent the overuse of Docker registries (e.g., to avoid reaching the Docker Hub download rate limit).The
NodeRestriction
admission plugin is enabled by default and must stay enabled for security purposes.Configure the API server admission plugins through the API
The API Explorer
To simplify things, we are using the API Explorer, which allows us to explore, learn, and interact with the OVHcloud API.
To find the Kubernetes API calls, select the /cloud
section, filter with "kube," and click Search
.
API Endpoints
- Get an existing cluster’s customization:
GET /cloud/project/{serviceName}/kube/{kubeID}/customization
Result:
- Update an existing cluster’s customization to disable the “AlwaysPullImages” admission plugin (e.g., in order to avoid our kubelet agents from reaching the Docker Hub download rate limit):
PUT /cloud/project/{serviceName}/kube/{kubeID}/customization
Result:
kubeProxy
can't be edited. You can define it only at the cluster creation step.- Create a Kubernetes cluster in the US-EAST-VA-1 region while disabling the “AlwaysPullImages” admission plugin:
POST /cloud/project/{serviceName}/kube
Result:
- Reset an existing cluster while disabling the “AlwaysPullImages” admission plugin:
POST /cloud/project/{serviceName}/kube/{kubeID}/reset
Result:
Configure the API server admission plugins through Terraform
Since version 0.21+ of our OVHcloud Terraform provider, you can configure your Kubernetes cluster (API server flags, CoreDNS, IPVS, etc…) through Terraform.
Getting your cluster/API tokens information
The “OVH provider” needs to be configured with a set of credentials:
- an
application_key
- an
application_secret
- a
consumer_key
Why?
Behind the scenes, the “OVHcloud Terraform provider” is making requests to OVHcloud APIs.
To retrieve this necessary information, please follow our First Steps with the OVHcloud API tutorial.
Specifically, you have to generate these credentials via the OVHcloud token generation page with the following rights:
When you have successfully generated your OVHcloud tokens, please save them as you will need to use them very soon.
The last information we need is the service_name
: it is the ID of your Public Cloud project.
How to get it?
In the Public Cloud section, you can retrieve your service name ID by clicking it.
You will also use this information in the Terraform resources definition files.
Terraform instructions
First, create a provider.tf
file with the minimum version, US endpoint (“ovh-us”), and the keys previously retrieved in this guide.
Terraform 0.13 and later:
Terraform 0.12 and earlier:
Alternatively, the secret keys can be retrieved from your environment.
OVH_ENDPOINT
OVH_APPLICATION_KEY
OVH_APPLICATION_SECRET
OVH_CONSUMER_KEY
This second method (or a similar alternative) is recommended to avoid storing secret data in a source repository.
Here, we defined the ovh-us
endpoint because we want to call the OVHcloud US API, but other endpoints exist, depending on your needs:
-
ovh-us
for OVHcloud US API -
ovh-ca
for OVHcloud North America API -
ovh-eu
for OVHcloud Europe API
Then, create a variables.tf
file with service_name:
Define the resources you want to create in a new file called ovh_kube_cluster.tf
:
In this resources configuration, we ask Terraform to create a Kubernetes cluster, in the US-EAST-VA-1 region, using the Kubernetes version 1.30, while disabling the “AlwaysPullImages” admission plugin (e.g., to avoid our kubelet agents from reaching the Docker Hub download rate limit).
Now we need to initialize Terraform, generate a plan, and apply it.
The init
command will initialize your working directory which contains .tf
configuration files.
It’s the first command to execute for a new configuration, or after doing a checkout of an existing configuration in a given git repository for example.
The init
command will:
- Download and install Terraform providers/plugins
- Initialize the backend (if defined)
- Download and install modules (if defined)
Now we can generate our plan:
Thanks to the plan
command, we can check what Terraform wants to create, modify, or remove.
The plan is okay for us, so let’s apply it:
Destroy
If you want to delete the Kubernetes cluster you added through Terraform, you have to execute the terraform destroy
command:
Go further
For more information and tutorials, please see our other Managed Kubernetes support guides or explore the guides for other OVHcloud products and services.