-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathazd-environments.yml
More file actions
39 lines (36 loc) · 903 Bytes
/
Copy pathazd-environments.yml
File metadata and controls
39 lines (36 loc) · 903 Bytes
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
# Azure Developer CLI Environment Configurations
# This file defines environment-specific settings for different deployment targets
environments:
dev:
location: eastus
tags:
Environment: Development
CostCenter: Engineering
Project: ThreeRiversBank
resources:
container_cpu: 0.25
container_memory: "0.5Gi"
min_replicas: 1
max_replicas: 2
staging:
location: eastus2
tags:
Environment: Staging
CostCenter: Engineering
Project: ThreeRiversBank
resources:
container_cpu: 0.5
container_memory: "1Gi"
min_replicas: 1
max_replicas: 3
production:
location: westus2
tags:
Environment: Production
CostCenter: BusinessOps
Project: ThreeRiversBank
resources:
container_cpu: 1.0
container_memory: "2Gi"
min_replicas: 2
max_replicas: 5