55 lines
1.1 KiB
YAML
Raw Normal View History

2018-07-17 11:04:29 +02:00
kind: helm-release
apiVersion: 1.1
2018-07-17 11:04:29 +02:00
build:
context: ..\..\..\..
dockerfile: Dockerfile
install:
2018-07-31 17:22:27 +02:00
chart: ../../../../k8s/helm/catalog-api
2018-07-17 11:04:29 +02:00
set:
image:
tag: $(tag)
pullPolicy: Never
ingress:
annotations:
kubernetes.io/ingress.class: traefik-azds
2018-07-17 11:04:29 +02:00
hosts:
- $(spacePrefix)eshop$(hostSuffix)
inf:
k8s:
dns: $(spacePrefix)eshop$(hostSuffix)
values:
- values.dev.yaml?
- secrets.dev.yaml?
- inf.yaml
- app.yaml
2018-07-17 11:04:29 +02:00
configurations:
develop:
build:
useGitIgnore: true
dockerfile: Dockerfile.develop
2018-07-17 11:04:29 +02:00
container:
syncTarget: /src
sync:
- '**/Pages/**'
- '**/Views/**'
- '**/wwwroot/**'
- '!**/*.{sln,csproj}'
command:
- dotnet
- run
- --no-restore
- --no-build
- --no-launch-profile
- -c
- ${Configuration:-Debug}
2018-07-17 11:04:29 +02:00
iterate:
processesToKill:
- dotnet
- vsdbg
2018-07-17 11:04:29 +02:00
buildCommands:
- - dotnet
- build
- --no-restore
- -c
- ${Configuration:-Debug}