Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,11 @@ jobs:
# Checks out the repository this file is in
- uses: actions/checkout@v3

# Logs into ACR
- name: Log into ACR
run: |
az acr login -n ${{ env.AZURE_CONTAINER_REGISTRY }}

# Logs in with your Azure credentials
- name: Azure login
uses: azure/login@v2.2.0
Expand Down
2 changes: 1 addition & 1 deletion template/dockerfiles/rust/draft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ variables:
type: "string"
kind: "containerImageVersion"
default:
value: "1.70.0"
value: "1.82.0"
description: "the version of rust used by the application"
exampleValues: ["1.70.0", "1.65.0", "1.60", "1.54", "1.53"]
versions: ">=0.0.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@ jobs:
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
auth-type: ${{ env.AUTH_TYPE }}

# Logs into ACR
- name: Log into ACR
run: |
az acr login -n ${{ env.AZURE_CONTAINER_REGISTRY }}

# Builds and pushes an image up to your Azure Container Registry
- name: Build and push image to ACR
run: |
Expand Down
2 changes: 1 addition & 1 deletion test/integration/rust/helm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ deployVariables:
value: "host.minikube.internal:5001/testapp"
languageVariables:
- name: "VERSION"
value: "1.81.0"
value: "1.82.0"
- name: "BUILDERVERSION"
value: "null"
- name: "PORT"
Expand Down
2 changes: 1 addition & 1 deletion test/integration/rust/kustomize.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ deployVariables:
value: "host.minikube.internal:5001/testapp"
languageVariables:
- name: "VERSION"
value: "1.81.0"
value: "1.82.0"
- name: "BUILDERVERSION"
value: "null"
- name: "PORT"
Expand Down
2 changes: 1 addition & 1 deletion test/integration/rust/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ deployVariables:
value: "host.minikube.internal:5001/testapp"
languageVariables:
- name: "VERSION"
value: "1.81.0"
value: "1.82.0"
- name: "BUILDERVERSION"
value: "null"
- name: "PORT"
Expand Down
Loading