Background
This document will guide you through the updating the application version of the Virtru Marketplace releases.
Log into your Cloud Console Kubernetes Engine Applications tab
- Direct link
- Select your Virtru Gateway application, Your application name will match your namespace
- (My Example "deployment-cse" shown below)
- Select the "YAML" tab and click Edit
- Towards the bottom of the YAML file, you will see the line item indicating the current version. Change the version number to match the current release and click save.
-
Example:
-
version: 3.15
- (Latest release version is 3.15 as of April 2023) - Please verify the latest release version linked here.
-
-
Example:
Now that the application version is updated you will need to update the container image in the deployment Yaml.
- Click on "Workloads" and select the "gateway" deployment
- Select the "YAML" tab and click "Edit" at the top of the screen
- Scroll down through the YAML file to locate the following variables:
configMapRef:
name: gateway
image: gcr.io/cloud-marketplace/virtru-public/gateway:<current-version-number>
-
- Change the image tag to match the new application version as before and click "Save"
- An example is shown below, please verify the latest release version number linked here.
- Change the image tag to match the new application version as before and click "Save"
- After you click save, your deployment will automatically replace your pod(s) with the new container version. Once it is done you should get a green check mark under "Status".
-