setup deployment materials for web app

This commit is contained in:
Arjun Patel
2026-05-26 15:33:41 -07:00
parent 578ebdbd1e
commit 15b86df6b0
8 changed files with 352 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
apiVersion: skaffold/v4beta11
kind: Config
metadata:
name: llink-web
build:
local: {}
tagPolicy:
gitCommit:
variant: AbbrevCommitSha
profiles:
- name: dev
build:
artifacts:
- image: llink-web
context: .
docker:
dockerfile: Dockerfile
buildArgs:
APP_ENV: dev
manifests:
rawYaml:
- k8s/dev/llink-web.yaml
deploy:
kubectl: {}
- name: prod
build:
artifacts:
- image: llink-web
context: .
docker:
dockerfile: Dockerfile
buildArgs:
APP_ENV: prod
manifests:
rawYaml:
- k8s/prod/llink-web.yaml
deploy:
kubectl: {}