-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathazure.yaml
More file actions
52 lines (50 loc) · 1.13 KB
/
azure.yaml
File metadata and controls
52 lines (50 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# yaml-language-server: $schema=https://raw.githubusercontent.com/Azure/azure-dev/main/schemas/v1.0/azure.yaml.json
name: python-mcp-demo
metadata:
template: python-mcp-demo@0.0.1
services:
server:
project: .
language: docker
host: containerapp
docker:
remoteBuild: true
path: ./servers/Dockerfile
context: .
keycloak:
project: .
language: docker
host: containerapp
docker:
remoteBuild: true
path: ./keycloak/Dockerfile
context: .
agent:
project: .
language: docker
host: containerapp
docker:
remoteBuild: true
path: ./agents/Dockerfile
context: .
hooks:
preprovision:
windows:
shell: pwsh
run: ./infra/auth_init.ps1
interactive: true
continueOnError: false
posix:
shell: sh
run: ./infra/auth_init.sh
interactive: true
continueOnError: false
postprovision:
posix:
shell: sh
run: ./infra/write_env.sh && ./infra/auth_update.sh
continueOnError: true
windows:
shell: pwsh
run: ./infra/write_env.ps1; ./infra/auth_update.ps1
continueOnError: true