Skip to content

Instantly share code, notes, and snippets.

@vkorbes
Created July 24, 2019 20:04
Show Gist options
  • Save vkorbes/aae79c24976d52ecebcc59c740595518 to your computer and use it in GitHub Desktop.
Save vkorbes/aae79c24976d52ecebcc59c740595518 to your computer and use it in GitHub Desktop.
apiVersion: skaffold/v1beta13
kind: Config
build:
artifacts:
- image: docker.io/ellenkorbes/links
context: links
- image: docker.io/ellenkorbes/router
context: router
- image: docker.io/ellenkorbes/web
context: web
deploy:
kubectl:
manifests:
- links/manifest.yml
- router/manifest.yml
- web/manifest.yml
k8s_yaml(['web/manifest.yml', 'router/manifest.yml', 'links/manifest.yml'])
docker_build('docker.io/ellenkorbes/web', 'web')
docker_build('docker.io/ellenkorbes/router', 'router')
docker_build('docker.io/ellenkorbes/links', 'links')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment