Files
llink/go/skaffold.yaml
T
talksik d8a45b22d3 chore: setup boilerplate for particle processor worker
This sets up an example of listening to firestore data and reacting. It
also sets up our first worker in the kubernetes cluster.
2026-03-25 09:52:23 -07:00

63 lines
1.2 KiB
YAML

apiVersion: skaffold/v4beta11
kind: Config
metadata:
name: llink-services
build:
local: {}
tagPolicy:
gitCommit:
variant: AbbrevCommitSha
# NOTE: we use different profiles for a simpler mental model
profiles:
- name: migrations
build:
artifacts:
- image: migrations
context: .
docker:
dockerfile: Dockerfile.migrations
manifests:
rawYaml:
- k8s/migrations.yaml
deploy:
kubectl: {}
- name: dev
build:
hooks:
before:
# already run in make test
# - command: ["go", "test", "./..."]
artifacts:
- image: orion
context: .
docker:
dockerfile: Dockerfile
- image: particleprocessorworker
context: .
docker:
dockerfile: Dockerfile.particleprocessorworker
manifests:
rawYaml:
- k8s/dev/*
deploy:
kubectl: {}
- name: prod
build:
hooks:
before:
# already run in make test
# - command: ["go", "test", "./..."]
artifacts:
- image: orion
context: .
docker:
dockerfile: Dockerfile
manifests:
rawYaml:
- k8s/prod/*
deploy:
kubectl: {}