Skip to content

Commit

Permalink
Azure templates | Add specific image deployment guide to templates re…
Browse files Browse the repository at this point in the history
…ad.me
  • Loading branch information
chkp-danhe committed Feb 22, 2024
1 parent 38d0df2 commit 5278f72
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions azure/templates/README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,56 @@ To deploy the ARM templates manually without using the Azure Marketplace, follow
https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/master/azure/templates/
```
7. Click *Purchase* to deploy the solution
# How to deploy a specific version of Azure image
<details>
Please note that we recommend using the latest image.
To deploy a specific Azure image, adjust the image version during the manual deployment of ARM templates and follow these instructions:
1. Determine the desired image version -
- Visit [sk132192 - CloudGuard Network Security for Azure - Latest Updates](https://support.checkpoint.com/results/sk/sk132192#:~:text=CloudGuard%20for%20Azure%20Gateway%20Images%20history) >
Images History sections.
- Find the version of the desired image and change it as follows:
**Examples:**
The version on the SK - **R81.10-335.1498**
Converted for the Azure template - **8110.900335.1498**
The version on the SK - **R81-335.883**
Converted for the Azure template - **8100.900335.0883**
2. In the "mainTemplate.json" file, change the value of the **“version”** parameter from “latest” to the version you want to deploy. This must be done under the version type of image you want to deploy (sg-byol, sg-ngtp, etc.)
**Example** for SG-BYOL (Bring your own license):
**Change from:**
"imageReferenceBYOL":{
"offer": "[variables('imageOffer')]",
"publisher": "[variables('imagePublisher')]",
"sku": "sg-byol",
"version": "**latest**" },
**to:**
"imageReferenceBYOL":{
"offer": "[variables('imageOffer')]",
"publisher": "[variables('imagePublisher')]",
"sku": "sg-byol",
"version": "**8110.900335.1498**" },
3. To confirm the version, run the command on the deployed machine:
**'more /etc/cloud-version'**
**Output for - R81.20-631.1475:**
release: R81.20
take: 631
build: 991001475
platform: azure
license: byol
deployment_method: ftw
template_name: management
template_version: 20231002
template_type: marketplace
</details>

0 comments on commit 5278f72

Please sign in to comment.