57 lines
1.1 KiB
YAML
Raw Normal View History

2018-07-31 17:22:27 +02:00
kind: helm-release
apiVersion: 1.1
2018-07-31 17:22:27 +02:00
build:
context: ..\..\..\..
dockerfile: Dockerfile
install:
chart: ../../../../k8s/helm/basket-api
set:
replicaCount: 1
image:
tag: $(tag)
pullPolicy: Never
ingress:
annotations:
kubernetes.io/ingress.class: traefik-azds
2018-07-31 17:22:27 +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-31 17:22:27 +02:00
configurations:
develop:
build:
useGitIgnore: true
dockerfile: Dockerfile.develop
2018-07-31 17:22:27 +02:00
args:
BUILD_CONFIGURATION: ${BUILD_CONFIGURATION:-Debug}
container:
sync:
- '**/Pages/**'
- '**/Views/**'
- '**/wwwroot/**'
- '!**/*.{sln,csproj}'
command:
- dotnet
- run
- --no-restore
- --no-build
- --no-launch-profile
- -c
- ${BUILD_CONFIGURATION:-Debug}
2018-07-31 17:22:27 +02:00
iterate:
processesToKill:
- dotnet
- vsdbg
2018-07-31 17:22:27 +02:00
buildCommands:
- - dotnet
- build
- --no-restore
- -c
- ${BUILD_CONFIGURATION:-Debug}