-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathskaffold.yaml
More file actions
30 lines (30 loc) · 746 Bytes
/
skaffold.yaml
File metadata and controls
30 lines (30 loc) · 746 Bytes
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
apiVersion: skaffold/v1beta2
kind: Config
build:
artifacts:
- image: changeme
context: .
docker: {}
tagPolicy:
envTemplate:
template: '{{.DOCKER_REGISTRY}}/johann01/testing-quickstart-python:{{.VERSION}}'
local: {}
deploy:
kubectl: {}
profiles:
- name: dev
build:
artifacts:
- docker: {}
tagPolicy:
envTemplate:
template: '{{.DOCKER_REGISTRY}}/johann01/testing-quickstart-python:{{.DIGEST_HEX}}'
local: {}
deploy:
helm:
releases:
- name: testing-quickstart-python
chartPath: charts/testing-quickstart-python
setValueTemplates:
image.repository: '{{.DOCKER_REGISTRY}}/johann01/testing-quickstart-python'
image.tag: '{{.DIGEST_HEX}}'