Skip to content

Commit b9c402a

Browse files
committed
Fix manifest paths: use relative path from service project directory
1 parent b1faed1 commit b9c402a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

azure.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,23 @@ services:
1717
project: ./python-app
1818
resourceName: ${AKS_CLUSTER_NAME}
1919
k8s:
20-
deploymentPath: ./manifests/python-app.yaml
20+
deploymentPath: ../manifests/python-app.yaml
2121

2222
js-app:
2323
language: js
2424
host: aks
2525
project: ./js-app
2626
resourceName: ${AKS_CLUSTER_NAME}
2727
k8s:
28-
deploymentPath: ./manifests/js-app.yaml
28+
deploymentPath: ../manifests/js-app.yaml
2929

3030
java-app:
3131
language: java
3232
host: aks
3333
project: ./java-app
3434
resourceName: ${AKS_CLUSTER_NAME}
3535
k8s:
36-
deploymentPath: ./manifests/java-app.yaml
36+
deploymentPath: ../manifests/java-app.yaml
3737

3838
# Hooks to set environment variables after provisioning
3939
hooks:

0 commit comments

Comments
 (0)