-
Notifications
You must be signed in to change notification settings - Fork 0
/
skaffold.yaml
68 lines (65 loc) · 2.34 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
65
66
67
68
apiVersion: skaffold/v2beta28
kind: Config
build:
artifacts:
- image: bio-data-svc # Change it on your own repo-name
docker:
buildArgs:
CI_JOB_TOKEN: "{{.CI_JOB_TOKEN}}"
#profiles:
#- name: dev
# deploy:
# helm:
# releases:
# - name: bio-data-svc # Change it on your own repo-name
# setValueTemplates:
# image.repository: "{{.IMAGE_REPO_verificator_svc}}" # Change <backend> on your own repo-name
# image.tag: "{{.IMAGE_TAG_verificator_svc}}" # Change <backend> on your own repo-name
# namespace: dev # Change it on your own namespace
# createNamespace: true
# chartPath: ./bio-data-svc-chart # Change it on your own path to helm chart
# valuesFiles:
# - ./bio-data-svc-chart/values.yaml # Change it on your own path to helm chart values.yaml file
# skipBuildDependencies: true
# flags:
# upgrade:
# - -i
# portForward:
# - resourceType: deployment
# resourceName: bio-data-svc # Change it on your own name in Chart.yaml
# port: 8000
# localPort: 8000
# - name: stage
# deploy:
# helm:
# releases:
# - name: backend # Change it on your own repo-name
# setValueTemplates:
# image.repository: "{{.REGISTRY}}/{{.SERVICE}}"
# image.tag: "{{.CI_COMMIT_SHA}}"
# namespace: stage # Change it on your own namespace
# createNamespace: true
# chartPath: ./backend # Change it on your own path to helm chart
# valuesFiles:
# - ./backend/values.yaml # Change it on your own path to helm chart values.yaml file
# skipBuildDependencies: true
# flags:
# upgrade:
# - -i
# - name: prod
# deploy:
# helm:
# releases:
# - name: backend # Change it on your own repo-name
# setValueTemplates:
# image.repository: "{{.REGISTRY}}/{{.SERVICE}}"
# image.tag: "{{.CI_COMMIT_TAG}}"
# namespace: prod # Change it on your own namespace
# createNamespace: true
# chartPath: ./backend # Change it on your own path to helm chart
# valuesFiles:
# - ./backend/values.yaml # Change it on your own path to helm chart values.yaml file
# skipBuildDependencies: true
# flags:
# upgrade:
# - -i