-
Notifications
You must be signed in to change notification settings - Fork 0
/
skaffold.yaml
75 lines (72 loc) · 2.47 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
69
70
71
72
73
74
75
apiVersion: skaffold/v2beta28
kind: Config
build:
artifacts:
- image: voting-relayer # Change it on your own repo-name
docker:
buildArgs:
CI_JOB_TOKEN: "{{.CI_JOB_TOKEN}}"
# Uncomment the following lines if you want to deploy your application
# profiles:
# - name: dev
# deploy:
# helm:
# releases:
# - name: backend # Change it on your own repo-name
# setValueTemplates:
# image.repository: "{{.IMAGE_REPO_backend}}"
# image.tag: "{{.IMAGE_TAG_backend}}"
# namespace: dev # 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
# portForward:
# - resourceType: deployment
# resourceName: backend # Change it on your own name in Chart.yaml
# port: 8000
# localPort: 8000
# - name: stage
# patches:
# - op: remove
# path: /build
# deploy:
# helm:
# releases:
# - name: backend # Change it on your own repo-name
# setValueTemplates:
# image.repository: "{{.SKAFFOLD_DEFAULT_REPO}}/{{.GITHUB_REPOSITORY}}"
# image.tag: "{{.GITHUB_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
# patches:
# - op: remove
# path: /build
# deploy:
# helm:
# releases:
# - name: backend # Change it on your own repo-name
# setValueTemplates:
# image.repository: "{{.SKAFFOLD_DEFAULT_REPO}}/{{.GITHUB_REPOSITORY}}"
# image.tag: "{{.GITHUB_REF_NAME}}"
# 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