Draft create

This commit is contained in:
2020-03-31 14:57:04 +02:00
parent 4d0f7c4750
commit adb9e0b804
23 changed files with 552 additions and 0 deletions

28
skaffold.yaml Normal file
View File

@@ -0,0 +1,28 @@
apiVersion: skaffold/v1beta2
kind: Config
build:
artifacts:
- image: beppevanrolleghem/test-repo
context: .
docker: {}
tagPolicy:
envTemplate:
template: '{{.DOCKER_REGISTRY}}/{{.IMAGE_NAME}}:{{.VERSION}}'
local: {}
deploy:
kubectl: {}
profiles:
- name: dev
build:
tagPolicy:
envTemplate:
template: '{{.DOCKER_REGISTRY}}/{{.IMAGE_NAME}}:{{.DIGEST_HEX}}'
local: {}
deploy:
helm:
releases:
- name: test-repo
chartPath: charts/test-repo
setValueTemplates:
image.repository: '{{.DOCKER_REGISTRY}}/{{.IMAGE_NAME}}'
image.tag: '{{.DIGEST_HEX}}'