Provisioning Cloud Instances on Google Compute Engine

orcharhino can interact with Google Compute Engine (GCE), including creating new virtual machines and controlling their power management states.

Prerequisites
  • Provide the installation medium for the operating systems that you want to use to provision hosts. For more information, see Syncing Repositories in Managing Content.

  • Provide an activation key for host registration. For more information, see Creating An Activation Key in Managing Content.

  • In your GCE project, configure a service account with the necessary IAM Compute role. For more information, see Compute Engine IAM roles in the GCE documentation.

  • In your GCE project-wise metadata, set the enable-oslogin to FALSE. For more information, see Enabling or disabling OS Login in the GCE documentation.

  • Optional: If you want to use Puppet with GCE hosts, navigate to Administer > Settings > Puppet and enable the Use UUID for certificates setting to configure Puppet to use consistent Puppet certificate IDs.

  • Based on your needs, associate a finish or user_data provisioning template with the operating system you want to use. For more information about provisioning templates, see Provisioning Templates in Provisioning Hosts.

Adding a Google GCE Connection to orcharhino Server

Use this procedure to add Google Compute Engine (GCE) as a compute resource in orcharhino. To use the CLI instead of the orcharhino management UI, see the CLI procedure.

Procedure
  1. In Google GCE, generate a service account key in JSON format.

  2. Copy the file from your local machine to orcharhino Server:

    # scp gce_key.json root@orcharhino.example.com:/usr/share/foreman/gce_key.json
  3. On orcharhino Server, change the owner for your service account key to the foreman user:

    # chown foreman /usr/share/foreman/gce_key.json
  4. On orcharhino Server, configure permissions for your service account key to ensure that the file is readable:

    # chmod 0600 /usr/share/foreman/gce_key.json
  5. On orcharhino Server, restore SELinux context for your service account key:

    # restorecon -vv /usr/share/foreman/gce_key.json
  6. In the orcharhino management UI, navigate to Infrastructure > Compute Resources and click Create Compute Resource.

  7. In the Name field, enter a name for the compute resource.

  8. From the Provider list, select Google.

  9. Optional: In the Description field, enter a description for the resource.

  10. In the Google Project ID field, enter the project ID.

  11. In the Client Email field, enter the client email.

  12. In the Certificate Path field, enter the path to the service account key. For example, /usr/share/foreman/gce_key.json.

  13. Click Load Zones to populate the list of zones from your GCE environment.

  14. From the Zone list, select the GCE zone to use.

  15. Click Submit.

CLI procedure
  1. In Google GCE, generate a service account key in JSON format.

  2. Copy the file from your local machine to orcharhino Server:

    # scp gce_key.json root@orcharhino.example.com:/usr/share/foreman/gce_key.json
  3. On orcharhino Server, change the owner for your service account key to the foreman user:

    # chown foreman /usr/share/foreman/gce_key.json
  4. On orcharhino Server, configure permissions for your service account key to ensure that the file is readable:

    # chmod 0600 /usr/share/foreman/gce_key.json
  5. On orcharhino Server, restore SELinux context for your service account key:

    # restorecon -vv /usr/share/foreman/gce_key.json
  6. Use the hammer compute-resource create command to add a GCE compute resource to orcharhino:

    # hammer compute-resource create \
    --email "My_GCE_Email" \
    --key-path "Path_To_My_GCE_Key.json" \
    --name "My_GCE_Compute_Resource" \
    --project "My_GCE_Project_ID" \
    --provider "gce" \
    --zone "My_Zone"

Adding Google Compute Engine Images to orcharhino Server

To create hosts using image-based provisioning, you must add information about the image, such as access details and the image location, to your orcharhino Server.

To use the CLI instead of the orcharhino management UI, see the CLI procedure.

Procedure
  1. In the orcharhino management UI, navigate to Infrastructure > Compute Resources and click the name of the Google Compute Engine connection.

  2. Click Create Image.

  3. In the Name field, enter a name for the image.

  4. From the Operating System list, select the base operating system of the image.

  5. From the Architecture list, select the operating system architecture.

  6. In the Username field, enter the SSH user name for image access. Specify a user other than root, because the root user cannot connect to a GCE instance using SSH keys. The username must begin with a letter and consist of lowercase letters and numbers.

  7. From the Image list, select an image from the Google Compute Engine compute resource.

  8. Optional: Select the User Data checkbox if the image supports user data input, such as cloud-init data.

  9. Click Submit to save the image details.

CLI procedure
  • Create the image with the hammer compute-resource image create command. With the --username option, specify a user other than root, because the root user cannot connect to a GCE instance using SSH keys. The username must begin with a letter and consist of lowercase letters and numbers.

    # hammer compute-resource image create \
    --name 'gce_image_name' \
    --compute-resource 'gce_cr' \
    --operatingsystem-id 1 \
    --architecture-id 1 \
    --uuid '3780108136525169178' \
    --username 'admin'

Adding Google GCE Details to a Compute Profile

Use this procedure to add Google GCE hardware settings to a compute profile. When you create a host on Google GCE using this compute profile, these settings are automatically populated.

To use the CLI instead of the orcharhino management UI, see the CLI procedure.

Procedure
  1. In the orcharhino management UI, navigate to Infrastructure > Compute Profiles.

  2. In the Compute Profiles window, click the name of an existing compute profile, or click Create Compute Profile, enter a Name, and click Submit.

  3. Click the name of the GCE compute resource.

  4. From the Machine Type list, select the machine type to use for provisioning.

  5. From the Image list, select the image to use for provisioning.

  6. From the Network list, select the Google GCE network to use for provisioning.

  7. Optional: Select the Associate Ephemeral External IP checkbox to assign a dynamic ephemeral IP address that orcharhino uses to communicate with the host. This public IP address changes when you reboot the host. If you need a permanent IP address, reserve a static public IP address on Google GCE and attach it to the host.

  8. In the Size (GB) field, enter the size of the storage to create on the host.

  9. Click Submit to save the compute profile.

CLI procedure
  1. Create a compute profile to use with the Google GCE compute resource:

    # hammer compute-profile create --name My_GCE_Compute_Profile
  2. Add GCE details to the compute profile:

    # hammer compute-profile values create \
    --compute-attributes "machine_type=f1-micro,associate_external_ip=true,network=default" \
    --compute-profile "My_GCE_Compute_Profile" \
    --compute-resource "My_GCE_Compute_Resource" \
    --volume "size_gb=20"

Creating Image-based Hosts on Google Compute Engine

In orcharhino, you can use Google Compute Engine provisioning to create hosts from an existing image. The new host entry triggers the Google Compute Engine server to create the instance using the pre-existing image as a basis for the new volume.

To use the CLI instead of the orcharhino management UI, see the CLI procedure.

Procedure
  1. In the orcharhino management UI, navigate to Hosts > Create Host.

  2. In the Name field, enter a name for the host.

  3. Click the Organization and Location tabs to ensure that the provisioning context is automatically set to the current context.

  4. From the Host Group list, select the host group that you want to use to populate the form.

  5. From the Deploy on list, select the Google Compute Engine connection.

  6. From the Compute Profile list, select a profile to use to automatically populate virtual machine settings.

  7. From the Lifecycle Environment list, select the environment.

  8. Click the Interfaces tab and click Edit on the host’s interface.

  9. Verify that the fields are automatically populated, particularly the following items:

    • The Name from the Host tab becomes the DNS name.

    • The MAC address field is blank. Google Compute Engine assigns a MAC address to the host during provisioning.

    • orcharhino Server automatically assigns an IP address for the new host.

    • The Domain field is populated with the required domain.

    • The Managed, Primary, and Provision options are automatically selected for the first interface on the host. If not, select them.

  10. Click the Operating System tab, and confirm that all fields automatically contain values.

  11. Click Resolve in Provisioning templates to check the new host can identify the right provisioning templates to use.

  12. Click the Virtual Machine tab and confirm that these settings are populated with details from the host group and compute profile. Modify these settings to suit your needs.

  13. Click the Parameters tab, and ensure that a parameter exists that provides an activation key. If not, add an activation key.

  14. Click Submit to save the host entry.

CLI procedure
  • Create the host with the hammer host create command and include --provision-method image. Replace the values in the following example with the appropriate values for your environment.

    # hammer host create \
    --architecture x86_64 \
    --compute-profile "gce_profile_name" \
    --compute-resource "My_GCE_Compute_Resource" \
    --image "My_GCE_Image" \
    --interface "type=interface,domain_id=1,managed=true,primary=true,provision=true" \
    --location "My_Location" \
    --name "GCE_VM" \
    --operatingsystem "My_Operating_System" \
    --organization "My_Organization" \
    --provision-method 'image' \
    --puppet-ca-proxy-id 1 \
    --puppet-environment-id 1 \
    --puppet-proxy-id 1 \
    --root-password "My_Root_Password"

For more information about additional host creation parameters for this compute resource, enter the hammer host create --help command.

The text and illustrations on this page are licensed by ATIX AG under a Creative Commons Attribution–Share Alike 3.0 Unported ("CC-BY-SA") license. This page also contains text from the official Foreman documentation which uses the same license ("CC-BY-SA").