Skip to content

Commit 0185648

Browse files
Merge pull request #592 from microsoft/hb-waf-tag-update
ci: update image tag to latest_waf
2 parents b6463fa + 14d72ee commit 0185648

File tree

8 files changed

+58774
-3323
lines changed

8 files changed

+58774
-3323
lines changed

.github/workflows/deploy-KMGeneric.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
echo "Generated SOLUTION_PREFIX: ${UNIQUE_SOLUTION_PREFIX}"
113113
- name: Determine Tag Name Based on Branch
114114
id: determine_tag
115-
run: echo "tagname=${{ github.ref_name == 'main' && 'latest_fdp' || github.ref_name == 'dev' && 'dev' || github.ref_name == 'demo' && 'demo' || github.ref_name == 'dependabotchanges' && 'dependabotchanges' || 'latest_fdp' }}" >> $GITHUB_OUTPUT
115+
run: echo "tagname=${{ github.ref_name == 'main' && 'latest_waf' || github.ref_name == 'dev' && 'dev' || github.ref_name == 'demo' && 'demo' || github.ref_name == 'dependabotchanges' && 'dependabotchanges' || 'latest_waf' }}" >> $GITHUB_OUTPUT
116116
- name: Deploy Bicep Template
117117
id: deploy
118118
run: |

.github/workflows/docker-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
id: determine_tag
5050
run: |
5151
if [[ "${{ github.ref_name }}" == "main" ]]; then
52-
echo "tagname=latest_fdp" >> $GITHUB_OUTPUT
52+
echo "tagname=latest_waf" >> $GITHUB_OUTPUT
5353
elif [[ "${{ github.ref_name }}" == "dev" ]]; then
5454
echo "tagname=dev" >> $GITHUB_OUTPUT
5555
elif [[ "${{ github.ref_name }}" == "demo" ]]; then

documents/CustomizingAzdParameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ By default this template will use the environment name as the prefix to prevent
1919
| `AZURE_OPENAI_API_VERSION` | string | `2025-01-01-preview` | Specifies the API version for Azure OpenAI. |
2020
| `AZURE_OPENAI_DEPLOYMENT_MODEL_CAPACITY` | integer | `30` | Sets the GPT model capacity. |
2121
| `AZURE_OPENAI_EMBEDDING_MODEL` | string | `text-embedding-ada-002` | Sets the name of the embedding model to use. |
22-
| `AZURE_ENV_IMAGETAG` | string | `latest` | Sets the image tag (`latest`, `dev`, `hotfix`, etc.). |
22+
| `AZURE_ENV_IMAGETAG` | string | `latest_waf` | Sets the image tag (`latest_waf`, `dev`, `hotfix`, etc.). |
2323
| `AZURE_OPENAI_EMBEDDING_MODEL_CAPACITY` | integer | `80` | Sets the capacity for the embedding model deployment. |
2424
| `AZURE_ENV_LOG_ANALYTICS_WORKSPACE_ID` | string | Guide to get your [Existing Workspace ID](/documents/re-use-log-analytics.md) | Reuses an existing Log Analytics Workspace instead of creating a new one. |
2525
| `USE_LOCAL_BUILD` | string | `false` | Indicates whether to use a local container build for deployment. |

documents/DeploymentGuide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ When you start the deployment, most parameters will have **default values**, but
157157
| **GPT Model Deployment Capacity** | Configure capacity for **GPT models** (in thousands). | 30k |
158158
| **Embedding Model** | Default: **text-embedding-ada-002**. | text-embedding-ada-002 |
159159
| **Embedding Model Capacity** | Set the capacity for **embedding models** (in thousands). | 80k |
160-
| **Image Tag** | Docker image tag to deploy. Common values: `latest`, `dev`, `hotfix`. | latest |
160+
| **Image Tag** | Docker image tag to deploy. Common values: `latest_waf`, `dev`, `hotfix`. | latest_waf |
161161
| **Use Local Build** | Boolean flag to determine if local container builds should be used. | false |
162162
| **Existing Log Analytics Workspace** | To reuse an existing Log Analytics Workspace ID. | *(empty)* |
163163
| **Existing Azure AI Foundry Project** | To reuse an existing Azure AI Foundry Project ID instead of creating a new one. | *(empty)* |

infra/main.bicep

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ param backendContainerRegistryHostname string = 'kmcontainerreg.azurecr.io'
9090
param backendContainerImageName string = 'km-api'
9191

9292
@description('Optional. The Container Image Tag to deploy on the backend.')
93-
param backendContainerImageTag string = 'latest_2025-07-22_895'
93+
param backendContainerImageTag string = 'latest_waf'
9494

9595
@description('Optional. The Container Registry hostname where the docker images for the frontend are located.')
9696
param frontendContainerRegistryHostname string = 'kmcontainerreg.azurecr.io'
@@ -99,7 +99,7 @@ param frontendContainerRegistryHostname string = 'kmcontainerreg.azurecr.io'
9999
param frontendContainerImageName string = 'km-app'
100100

101101
@description('Optional. The Container Image Tag to deploy on the frontend.')
102-
param frontendContainerImageTag string = 'latest'
102+
param frontendContainerImageTag string = 'latest_waf'
103103

104104
@description('Optional. The tags to apply to all deployed Azure resources.')
105105
param tags resourceInput<'Microsoft.Resources/resourceGroups@2025-04-01'>.tags = {}

0 commit comments

Comments
 (0)