Custom GCP image

Vertica publishes a Google Cloud Platform (GCP) image that contains third-party libraries and other software that is required to install and operate the Management Console (MC) instance and Vertica database cluster instances. In some circumstances, you might need to add customizations to your MC environment, such as monitoring or security updates.

You cannot modify the published Vertica image directly, but you can create a custom image from the published image with your customizations. You can select this custom image when you create or revive a cluster.

Prerequisites

GCP account with administrative rights.

Create a custom GCP image

To create a custom GCP image, you must launch a base Virtual Machine (VM) instance from the published Vertica image so that you can make your changes. After you create this base instance, you can save it as a custom image.

Create the base instance

To begin, you must create an instance that includes the published Vertica image. This is a temporary instance that you can delete after you create the custom image:

  1. Log in to GCP.
  2. From the GCP console, go to Compute Engine.
  3. In the side navigation bar, go to Storage > Images.
  4. Filter the images table for the published Vertica image that you want to use in the base instance. For example, filter for vertica-23-4-0 to customize the 23.4.0-x image.
  5. Copy the name of the published Vertica image and save it for later use.
  6. Go to Virtual machines > VM instances in the side navigation bar.
  7. Select CREATE INSTANCE.
  8. Enter a name for your instance.
  9. Select a region.
  10. Scroll down to Boot disk, and select CHANGE.
  11. In the Boot disk window, select the CUSTOM IMAGES tab.
  12. In the image field, paste the name of the published Vertica image to filter the image list.
  13. Select SELECT. The Boot disk window closes and you return to Create an instance.
  14. Select CREATE to create the base instance.

After you select CREATE, you return to Virtual machines > VM instances in Compute Engine. When GCP finishes creating the base instance, you have a running instance that you can access and customize.

Customize the base instance

After you create the base instance, add the contents of your public key to the instance so you can SSH into the machine to add customizations or configurations:

  1. In Virtual machines > VM instances, filter for the base instance.
  2. Select the instance name. The instance Details tab displays.
  3. Select EDIT in the top menu.
  4. In Security and access > SSH Keys, select ADD ITEM.
  5. In the SSH key 1 * field, paste the contents of the public SSH key that you just created.
  6. Select SAVE.
  7. Return to the VM instances window, go to the Network interfaces section and retrieve the External IP address for the base instance.
  8. Remotely log in to the base instance with the user string from the public key. The -i option uses the local machine's private key for authentication:
    $ ssh -i path/to/.ssh/private-key username@baseInstanceExternalIPAddress
    
  9. Add custom configurations to the base instance environment.

Now, the base instance includes the published Vertica base image, and any custom configurations.

Create the custom image

After you customize the base instance, you can create a new image that includes the published Vertica base image and your customizations:

  1. On Virtual Machines > VM instances, select the base instance and select STOP.
  2. After the instance stops, select the instance name in the list. The image DETAILS tab displays.
  3. Scroll to the Boot disk section. In the Name column, select the instance name.
  4. In the top navigation bar, select CREATE IMAGE. The Create an image page displays.
  5. In the Name field, enter a name for the instance. You must use the following naming convention, or the MC cannot identity the image when you create or revive a cluster:
    vertica-major-minor-servicepack-hotfix-imageName
    
    For example, the following name uses Vertica version 12, minor release 0, service pack 0, hotfix zero:
    vertica-12-0-0-0-customImageName
    
  6. Verify that Source disk lists the base instance name.
  7. Select CREATE.
  8. Record the name of the image that you just created so you can enter it in the MC.

After GCP creates the image, you have a custom image that includes the published Vertica base image, and any environment customizations. This custom image is available in the current GCP project.

If you no longer need the customized base instance, you can delete it from your GCP VM instances.

Select the custom image in MC

After you create the custom image in GCP, return to the MC and use the custom image in a workflow:

  1. Log into the MC and begin one of the following workflows:
    • Create database cluster
    • Revive cluster
  2. On the wizard page Enter Vertica database name and login credentials, select the Use Custom Image box.
  3. In Custom Image Name, enter the custom image name. For example, vertica-23-4-0-0-customImageName.
  4. Complete the create or revive workflow.

After you complete the workflow, any new or revived Vertica database cluster instances run the custom image. If you scale a new or revived cluster, the added instances use the same custom image.