53 lines
1.1 KiB
YAML
53 lines
1.1 KiB
YAML
|
kind: helm-release
|
||
|
apiVersion: 1.1
|
||
|
build:
|
||
|
context: ..\..\..\..
|
||
|
dockerfile: Dockerfile
|
||
|
install:
|
||
|
chart: ../../../../k8s/helm/webhooks-api
|
||
|
set:
|
||
|
image:
|
||
|
tag: $(tag)
|
||
|
pullPolicy: Never
|
||
|
ingress:
|
||
|
annotations:
|
||
|
kubernetes.io/ingress.class: traefik-azds
|
||
|
hosts:
|
||
|
# This expands to [space.s.]webhooksapi.<guid>.<region>.aksapp.io
|
||
|
- $(spacePrefix)webhooksapi$(hostSuffix)
|
||
|
values:
|
||
|
- values.dev.yaml?
|
||
|
- secrets.dev.yaml?
|
||
|
- inf.yaml
|
||
|
- app.yaml
|
||
|
configurations:
|
||
|
develop:
|
||
|
build:
|
||
|
useGitIgnore: true
|
||
|
dockerfile: Dockerfile.develop
|
||
|
container:
|
||
|
syncTarget: /src
|
||
|
sync:
|
||
|
- '**/Pages/**'
|
||
|
- '**/Views/**'
|
||
|
- '**/wwwroot/**'
|
||
|
- '!**/*.{sln,csproj}'
|
||
|
command:
|
||
|
- dotnet
|
||
|
- run
|
||
|
- --no-restore
|
||
|
- --no-build
|
||
|
- --no-launch-profile
|
||
|
- -c
|
||
|
- ${Configuration:-Debug}
|
||
|
iterate:
|
||
|
processesToKill:
|
||
|
- dotnet
|
||
|
- vsdbg
|
||
|
buildCommands:
|
||
|
- - dotnet
|
||
|
- build
|
||
|
- --no-restore
|
||
|
- -c
|
||
|
- ${Configuration:-Debug}
|