This guide will show you how to provision (Create, Update, Delete) an Equinix Metal Device using Kubeform.
Examples used in this guide can be found here.
At first, let’s look at the Terraform
configuration for an Equinix Metal Device below:
provider "metal" {
auth_token = "<equinix-metal-auth-token>"
}
resource "metal_device" "test" {
hostname = "terraform-test"
plan = "c3.small.x86"
metro = "sv"
operating_system = "ubuntu_20_04"
billing_cycle = "hourly"
project_id = local.project_id
}
Now, if we apply terraform apply
this config will create an Equinix Metal Device. We’ll create the exact configuration using Kubeform. The steps are given below:
At first, you need to have a Kubernetes cluster, and the kubectl command-line tool must be configured to communicate with your cluster. If you do not already have a cluster, you can create one by using kind.
Now, install Kubeform Equinix Metal provider operator in your cluster following the steps here. To get a FREE license, please visit here.
helm install kubeform-provider-equinixmetal appscode/kubeform-provider-equinixmetal \
--namespace kubeform --create-namespace \
--set-file kubeform-provider.license=/path/to/the/license.txt \
--set crds.device=true
To keep things isolated, this tutorial uses a separate namespace called demo
throughout this tutorial.
$ kubectl create ns demo
namespace/demo created
Then create the secret which is necessary for provisioning the Device in Equinix Metal.
apiVersion: v1
kind: Secret
metadata:
name: em-secret
namespace: demo
stringData:
provider: |
{
"auth_token": "<equinixmetal-auth-token>"
}
Here we can see that, the provider
field of the stringData
of the secret is same as the field of the provider part in the terraform config file. The provider secret needs to be provided in json format, under the provider
key. Save it in a file (eg. provider-secret.yaml
) then apply it using kubectl command.
kubectl apply -f provider-secret.yaml
Note: Here, key of the provider field of the stringData (eg.
"auth_token"
etc.) must be in snake case format (same as the tf configuration file)
Now, we’ll create the Equinix Metal Device CRD. The yaml is given below:
apiVersion: device.equinixmetal.kubeform.com/v1alpha1
kind: Device
metadata:
name: test
namespace: demo
spec:
resource:
hostname: "kubeform-test"
plan: "c3.small.x86"
metro: "sv"
operatingSystem: "ubuntu_20_10"
billingCycle: "hourly"
projectID: "<your-project-id>"
providerRef:
name: em-secret
terminationPolicy: DoNotTerminate
Here, the resource
field contains the Equinix Metal Device spec. Also, we can see that the provider secret is referenced using a field called providerRef
.
We can see a field named
terminationPolicy
, this is a feature of Kubeform. This field can have two values,Delete
orDoNotTerminate
. When the value of this field is set toDoNotTerminate
then the resource won’t get deleted even though we applykubectl delete
operation, this field needs to be set toDelete
to delete the resource. It helps to avoid accidental deletion of the resource. We will see the use of this field inDelete Equinix Metal Device
part later on this guide.
Save it in a file (eg. equinixmetal-device.yaml
) then apply it using kubectl.
kubectl apply -f equinixmetal-device.yaml
After applying this command, the resource will be in InProgress
phase until the cloud creates the resource. Once the cloud resource get created, the resource will be in Current
phase which means we have successfully created the resource.
After successful creation of the resource, the resource state is available under spec.state
section. This spec.state
field maps the real world resource to the Kubeform resource. This field doesn’t contain any sensitive field. Sensitive fields are stored in the secret specified in the spec.secretRef
section. If no secretRef
is specified, Kubeform will create one.
Now, we’ll update the Device CRD. For updating the Device, we will modify the existing equinixmetal-device.yaml
, we will use a different hostname
(kubeform-test-updated
). The modified yaml is given below:
apiVersion: device.equinixmetal.kubeform.com/v1alpha1
kind: Device
metadata:
name: test
namespace: demo
spec:
resource:
hostname: "kubeform-test-updated"
plan: "c3.small.x86"
metro: "sv"
operatingSystem: "ubuntu_20_10"
billingCycle: "hourly"
projectID: "<your-project-id>"
providerRef:
name: em-secret
terminationPolicy: DoNotTerminate
Now, apply it using kubectl command.
kubectl apply -f equinixmetal-device.yaml
After that, existing Equinix Metal Device will be updated!
To delete the Equinix Metal Device just run:
kubectl delete -f equinixmetal-device.yaml
After applying this command we will get below error message, as we have set terminationPolicy: DoNotTerminate
:
Error from server (device "default/test" can't be terminated. To delete, change spec.terminationPolicy to Delete): error when deleting "equinixmetal-device.yaml": admission webhook "device.equinixmetal.kubeform.com" denied the request: device "default/test" can't be terminated. To delete, change spec.terminationPolicy to Delete
Let’s change the terminationPolicy
to Delete
by using kubectl patch command.
kubectl patch -n demo device test -p '{"spec":{"terminationPolicy":"Delete"}}' --type="merge"
Now, we can delete the Device.
kubectl delete -f equinixmetal-device.yaml
After applying this command the resource will be in Terminating
phase until the cloud resource get destroyed. Once the cloud resource get destroyed, the resource will get deleted successfully.