From 665ba398332559b098fd7637f57d029ed9358c5b Mon Sep 17 00:00:00 2001 From: Mathieu Benoit Date: Wed, 3 Jul 2024 14:33:37 -0400 Subject: [PATCH 1/2] Bump AKS store apps version --- apps/makeline/score.yaml | 2 +- apps/order/score.yaml | 2 +- apps/store-front/score.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/makeline/score.yaml b/apps/makeline/score.yaml index 7c95c1d..38f726c 100644 --- a/apps/makeline/score.yaml +++ b/apps/makeline/score.yaml @@ -3,7 +3,7 @@ metadata: name: makeline-service containers: makeline-service: - image: ghcr.io/azure-samples/aks-store-demo/makeline-service:1.4.0 + image: ghcr.io/azure-samples/aks-store-demo/makeline-service:dba0629 variables: ORDER_QUEUE_URI: "amqp://${resources.orders-queue.host}:${resources.orders-queue.port}" ORDER_QUEUE_USERNAME: "${resources.orders-queue.username}" diff --git a/apps/order/score.yaml b/apps/order/score.yaml index a2c57c1..1bd5e0e 100644 --- a/apps/order/score.yaml +++ b/apps/order/score.yaml @@ -3,7 +3,7 @@ metadata: name: order-service containers: order-service: - image: ghcr.io/azure-samples/aks-store-demo/order-service:1.4.0 + image: ghcr.io/azure-samples/aks-store-demo/order-service:1c33095 variables: ORDER_QUEUE_HOSTNAME: "${resources.orders-queue.host}" ORDER_QUEUE_PORT: "${resources.orders-queue.port}" diff --git a/apps/store-front/score.yaml b/apps/store-front/score.yaml index 968f200..2517caa 100644 --- a/apps/store-front/score.yaml +++ b/apps/store-front/score.yaml @@ -3,7 +3,7 @@ metadata: name: store-front containers: store-front: - image: "ghcr.io/azure-samples/aks-store-demo/store-front:1.4.0" + image: ghcr.io/azure-samples/aks-store-demo/store-front:87b80c5 variables: VUE_APP_ORDER_SERVICE_URL: "http://${resources.order-service.name}:3000/" VUE_APP_PRODUCT_SERVICE_URL: "http://${resources.product-service.name}:3002/" From a293c384cdbf2b6daeeef7a88e64a7b0848ea826 Mon Sep 17 00:00:00 2001 From: Mathieu Benoit Date: Wed, 3 Jul 2024 14:34:29 -0400 Subject: [PATCH 2/2] HUMCTL_VERSION: '*' --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1a8edc9..3096834 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -11,7 +11,7 @@ jobs: apps: ["order", "product", "store-front", "makeline", "store-admin"] runs-on: ubuntu-22.04 env: - HUMCTL_VERSION: '0.23.2' + HUMCTL_VERSION: '*' steps: - name: checkout code uses: actions/checkout@v4