-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathradixconfig.yaml
38 lines (37 loc) · 1.1 KB
/
radixconfig.yaml
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
apiVersion: radix.equinor.com/v1
kind: RadixApplication
metadata:
name: procosys-frontend
spec:
environments:
- name: dev
build:
from: develop
- name: test
build:
from: test
- name: prod
build:
from: master
components:
- name: frontend
publicPort: http
ports:
- name: http
port: 5000
environmentConfig:
- environment: dev
dockerfileName: Dockerfile.dev
variables:
configurationEndpoint: 'https://pcs-config-non-prod-func.azurewebsites.net/api/Frontend/Auth'
configurationScope: 'api://0708e202-b5ad-4d95-9735-a631c715d6a9/Read'
- environment: test
dockerfileName: Dockerfile.test
variables:
configurationEndpoint: 'https://pcs-config-non-prod-func.azurewebsites.net/api/Frontend'
configurationScope: 'api://0708e202-b5ad-4d95-9735-a631c715d6a9/Read'
- environment: prod
dockerfileName: Dockerfile.prod
variables:
configurationEndpoint: 'https://pcs-config-prod-func.azurewebsites.net/api/Frontend'
configurationScope: 'api://756f2a23-f54d-4643-bb49-62c0db4802ae/Read'