Draft create

This commit is contained in:
2020-04-16 10:02:14 +02:00
parent 234bc3e264
commit 3a221a5e9f
24 changed files with 596 additions and 0 deletions

28
skaffold.yaml Normal file
View File

@@ -0,0 +1,28 @@
apiVersion: skaffold/v1beta2
kind: Config
build:
artifacts:
- image: flowfactor/frontend-node
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: frontend-node
chartPath: charts/frontend-node
setValueTemplates:
image.repository: '{{.DOCKER_REGISTRY}}/{{.IMAGE_NAME}}'
image.tag: '{{.DIGEST_HEX}}'