Files
fission-src/skaffold.yaml
T
2020-05-22 10:39:01 +05:30

53 lines
1.9 KiB
YAML

####################################
# This file can be used with Skaffold (https://github.com/GoogleContainerTools/skaffold) to
# build and deploy Fission to Kubernetes cluster.
############## Usage ##############
# Skaffold CLI should be installed on your machine.
# Replace <DOCKERHUB_REPO> with your registry repo/org name
# Run `TAG=1313 skaffold run` to build and deploy with helm - where replace value of tag to what you want to use as tag for image
# Run`skaffold build` to only build and push images
############## Future Improvement/Limitations ##############
# 1) [LOW] Add profiles to suit various deployment needs
####################################
apiVersion: skaffold/v2beta1
kind: Config
build:
artifacts:
- image: <DOCKERHUB_REPO>/fission
context: .
docker:
dockerfile: cmd/fission-bundle/Dockerfile.fission-bundle
- image: <DOCKERHUB_REPO>/fetcher
docker:
dockerfile: cmd/fetcher/Dockerfile.fission-fetcher
- image: <DOCKERHUB_REPO>/preupgradechecks
docker:
dockerfile: cmd/preupgradechecks/Dockerfile.fission-preupgradechecks
tagPolicy:
envTemplate:
template: "{{.IMAGE_NAME}}:{{.TAG}}"
deploy:
helm:
releases:
- name: fission
chartPath: ./charts/fission-all
valuesFiles:
- ./charts/fission-all/values.yaml
namespace: "fission"
setValues:
namespace: fission
repository: index.docker.io
# The env template values only should go in setValueTemplates, all other overrides in setValues
setValueTemplates:
image: <DOCKERHUB_REPO>/fission
preUpgradeChecksImage: <DOCKERHUB_REPO>/preupgradechecks
fetcher.image: <DOCKERHUB_REPO>/fetcher
fetcher.imageTag: "{{.TAG}}"
imageTag: "{{.TAG}}"
wait: true
recreatePods: false
packaged: null
imageStrategy:
fqn: null
helm: null