setup infra for pusher service

This commit is contained in:
talksik
2026-04-09 11:12:35 -07:00
parent ce368c9e6e
commit 3e35850bdf
20 changed files with 1740 additions and 2 deletions
+35
View File
@@ -90,3 +90,38 @@ profiles:
- k8s/prod/particleprocessorworker.yaml
deploy:
kubectl: {}
---
apiVersion: skaffold/v4beta11
kind: Config
metadata:
name: pusher
build:
local: {}
tagPolicy:
gitCommit:
variant: AbbrevCommitSha
profiles:
- name: dev
build:
artifacts:
- image: pusher
context: .
docker:
dockerfile: Dockerfile.pusherservice
manifests:
rawYaml:
- k8s/dev/pusher.yaml
deploy:
kubectl: {}
- name: prod
build:
artifacts:
- image: pusher
context: .
docker:
dockerfile: Dockerfile.pusherservice
manifests:
rawYaml:
- k8s/prod/pusher.yaml
deploy:
kubectl: {}