-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathskaffold.yaml
64 lines (64 loc) · 1.54 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
apiVersion: skaffold/v4beta2
kind: Config
metadata:
name: java-spring-monitoring
build:
local:
concurrency: 3
artifacts:
- image: bitxon/price-app
context: price-service
docker:
dockerfile: Dockerfile
- image: bitxon/order-app
context: order-service
docker:
dockerfile: Dockerfile
- image: bitxon/sba-app
context: spring-boot-admin
docker:
dockerfile: Dockerfile
manifests:
rawYaml:
- k8s/monitoring/namespace.yaml
- k8s/monitoring/prometheus-rbac.yaml
- k8s/monitoring/prometheus-deployment.yaml
- k8s/monitoring/grafana-config.yaml
- k8s/monitoring/grafana-deployment.yaml
- k8s/monitoring/zipkin.yaml
- k8s/db.yaml
- k8s/sba-rbac.yaml
- k8s/sba-application.yaml
- k8s/price-application.yaml
- k8s/order-application.yaml
portForward:
- resourceName: price-service
resourceType: service
namespace: default
port: 8080
localPort: 8090
- resourceName: order-service
resourceType: service
namespace: default
port: 8080
localPort: 8080
- resourceName: zipkin-service
resourceType: service
namespace: monitoring
port: 9411
localPort: 9411
- resourceName: sba-service
resourceType: service
namespace: default
port: 8080
localPort: 9999
- resourceName: prometheus-service
resourceType: service
namespace: monitoring
port: 9090
localPort: 9090
- resourceName: grafana-service
resourceType: service
namespace: monitoring
port: 3000
localPort: 3000