// Module included in the following assemblies: // // * machine_management/cluster_api_machine_management/cluster_api_provider_configurations/cluster-api-config-options-gcp.adoc :_mod-docs-content-type: REFERENCE [id="capi-yaml-machine-template-gcp_{context}"] = Sample YAML for a Cluster API machine template resource on {gcp-full} The machine template resource is provider-specific and defines the basic properties of the machines that a compute machine set creates. The compute machine set references this template when creating machines. [source,yaml] ---- apiVersion: infrastructure.cluster.x-k8s.io/v1beta1 kind: GCPMachineTemplate # <1> metadata: name: # <2> namespace: openshift-cluster-api spec: template: spec: # <3> rootDeviceType: pd-ssd rootDeviceSize: 128 instanceType: n1-standard-4 image: projects/rhcos-cloud/global/images/rhcos-411-85-202203181601-0-gcp-x86-64 subnet: -worker-subnet serviceAccounts: email: scopes: - https://www.googleapis.com/auth/cloud-platform additionalLabels: kubernetes-io-cluster-: owned additionalNetworkTags: - -worker ipForwarding: Disabled ---- <1> Specify the machine template kind. This value must match the value for your platform. <2> Specify a name for the machine template. <3> Specify the details for your environment. The values here are examples.