From 177a64e6327b5abca684948284dd32ab529cbbed Mon Sep 17 00:00:00 2001 From: Shyam Radhakrishnan Date: Thu, 22 Sep 2022 21:16:40 +0530 Subject: [PATCH] Add doc for busrstable instances --- docs/src/gs/customize-worker-node.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/docs/src/gs/customize-worker-node.md b/docs/src/gs/customize-worker-node.md index f2d1c032c..ff546c343 100644 --- a/docs/src/gs/customize-worker-node.md +++ b/docs/src/gs/customize-worker-node.md @@ -73,9 +73,28 @@ spec: desiredState: "ENABLED" ``` +## Configure Burstable Instances +Use the following configuration in `OCIMachineTemplate` to configure [Burstable Instance][burstable_instances]. +The following values are supported for baselineOcpuUtilization +* BASELINE_1_8 - baseline usage is 1/8 of an OCPU. +* BASELINE_1_2 - baseline usage is 1/2 of an OCPU. +* BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance. + +```yaml +kind: OCIMachineTemplate +apiVersion: infrastructure.cluster.x-k8s.io/v1beta1 +spec: + template: + spec: + shapeConfig: + baselineOcpuUtilization: "BASELINE_1_8" + ocpus: "1" +``` + [customer_managed_keys]: https://docs.oracle.com/en-us/iaas/Content/KeyManagement/Tasks/assigningkeys.htm [shielded_instances]: https://docs.oracle.com/en-us/iaas/Content/Compute/References/shielded-instances.htm [preemptible_instances]: https://docs.oracle.com/en-us/iaas/Content/Compute/Concepts/preemptible.htm#howitworks__using [cloud_agent_plugins]: https://docs.oracle.com/en-us/iaas/Content/Compute/Tasks/manage-plugins.htm [github_capoci_types]: https://github.com/oracle/cluster-api-provider-oci/blob/main/api/v1beta1/types.go -[capacity_reservations]: https://docs.oracle.com/en-us/iaas/Content/Compute/Tasks/reserve-capacity.htm \ No newline at end of file +[capacity_reservations]: https://docs.oracle.com/en-us/iaas/Content/Compute/Tasks/reserve-capacity.htm +[burstable_instances]: https://docs.oracle.com/en-us/iaas/Content/Compute/References/burstable-instances.htm \ No newline at end of file