-
Notifications
You must be signed in to change notification settings - Fork 0
/
skaffold.yaml
50 lines (50 loc) · 1.09 KB
/
skaffold.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
39
40
41
42
43
44
45
46
47
48
49
50
apiVersion: skaffold/v2beta11
kind: Config
build:
artifacts:
- image: public-gateway
tagPolicy:
sha256: {}
local: {}
deploy:
helm:
releases:
- name: dev-backing-services
chartPath: chart/dev-backing-services
valuesFiles:
- chart/dev-backing-services/values.yml
wait: true
skipBuildDependencies: true
- name: public-gateway
chartPath: chart
valuesFiles:
- chart/values.dev.yml
artifactOverrides:
image.repository: public-gateway
wait: true
skipBuildDependencies: true
portForward:
- resourceType: service
resourceName: dev-backing-services-vault
port: 8200
localPort: 8200
- resourceType: service
resourceName: minio
port: 9000
localPort: 9000
- resourceType: service
resourceName: public-gateway-poweb
port: 8082
localPort: 8080
- resourceType: service
resourceName: public-gateway-pohttp
port: 80
localPort: 8081
- resourceType: service
resourceName: public-gateway-cogrpc
port: 8081
localPort: 8082
- resourceType: service
resourceName: pong-pohttp
port: 80
localPort: 8083