From 18f0c876ee77aa84711e2c0b3642cc92c789d2c3 Mon Sep 17 00:00:00 2001 From: Ashok Sadineni Date: Mon, 29 Sep 2025 18:07:18 +1000 Subject: [PATCH 1/2] test direct push --- check.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 check.txt diff --git a/check.txt b/check.txt new file mode 100644 index 00000000..9daeafb9 --- /dev/null +++ b/check.txt @@ -0,0 +1 @@ +test From 540ea9e913f822be1dc12b10de5eac7eacdb3c47 Mon Sep 17 00:00:00 2001 From: Ashok Sadineni Date: Mon, 29 Sep 2025 23:15:52 +1000 Subject: [PATCH 2/2] fix: remove duplicate value/valueFrom for order-service env --- k8s/order-service.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/k8s/order-service.yaml b/k8s/order-service.yaml index c9d92e4d..374d78dd 100644 --- a/k8s/order-service.yaml +++ b/k8s/order-service.yaml @@ -18,7 +18,7 @@ spec: spec: containers: - name: order-service-container - image: durgeshsamariya.azurecr.io/order_service:latest + image: wk0825293.azurecr.io/order_service:latest imagePullPolicy: Always ports: - containerPort: 8000 @@ -45,6 +45,12 @@ spec: configMapKeyRef: name: ecomm-config-w08e1 key: PRODUCT_SERVICE_URL + env: + - name: DATABASE_URL + valueFrom: + secretKeyRef: + name: order-db-secret + key: DATABASE_URL --- apiVersion: v1 kind: Service