Webhooks api Devspaces
This commit is contained in:
parent
95f8b8370e
commit
b2252dc4ec
@ -1,5 +1,6 @@
|
|||||||
{{- if .Values.ingress.enabled -}}
|
{{- if .Values.ingress.enabled -}}
|
||||||
{{- $ingressPath := include "pathBase" . -}}
|
{{- $ingressPath := include "pathBase" . -}}
|
||||||
|
{{- $serviceName := .Values.app.svc.webhooks }}
|
||||||
apiVersion: extensions/v1beta1
|
apiVersion: extensions/v1beta1
|
||||||
kind: Ingress
|
kind: Ingress
|
||||||
metadata:
|
metadata:
|
||||||
@ -23,11 +24,13 @@ spec:
|
|||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
rules:
|
rules:
|
||||||
- host: {{ .Values.inf.k8s.dns }}
|
{{- range .Values.ingress.hosts }}
|
||||||
|
- host: {{ . }}
|
||||||
http:
|
http:
|
||||||
paths:
|
paths:
|
||||||
- path: {{ $ingressPath }}
|
- path: {{ $ingressPath }}
|
||||||
backend:
|
backend:
|
||||||
serviceName: {{ .Values.app.svc.webhooks }}
|
serviceName: {{ $serviceName }}
|
||||||
servicePort: http
|
servicePort: http
|
||||||
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
21
src/Services/Webhooks/Webhooks.API/Dockerfile.develop
Normal file
21
src/Services/Webhooks/Webhooks.API/Dockerfile.develop
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
FROM microsoft/dotnet:2.2-sdk
|
||||||
|
ARG BUILD_CONFIGURATION=Debug
|
||||||
|
ENV ASPNETCORE_ENVIRONMENT=Development
|
||||||
|
ENV DOTNET_USE_POLLING_FILE_WATCHER=true
|
||||||
|
EXPOSE 80
|
||||||
|
|
||||||
|
WORKDIR /src
|
||||||
|
|
||||||
|
COPY ["src/BuildingBlocks/EventBus/EventBus/EventBus.csproj", "src/BuildingBlocks/EventBus/EventBus/"]
|
||||||
|
COPY ["src/BuildingBlocks/EventBus/EventBusRabbitMQ/EventBusRabbitMQ.csproj", "src/BuildingBlocks/EventBus/EventBusRabbitMQ/"]
|
||||||
|
COPY ["src/BuildingBlocks/EventBus/EventBusServiceBus/EventBusServiceBus.csproj", "src/BuildingBlocks/EventBus/EventBusServiceBus/"]
|
||||||
|
COPY ["src/BuildingBlocks/EventBus/IntegrationEventLogEF/IntegrationEventLogEF.csproj", "src/BuildingBlocks/EventBus/IntegrationEventLogEF/"]
|
||||||
|
COPY ["src/BuildingBlocks/WebHostCustomization/WebHost.Customization/WebHost.Customization.csproj", "src/BuildingBlocks/WebHostCustomization/WebHost.Customization/"]
|
||||||
|
COPY ["src/Services/Webhooks/Webhooks.API/Webhooks.API.csproj", "src/Services/Webhooks/Webhooks.API/"]
|
||||||
|
|
||||||
|
RUN dotnet restore src/Services/Webhooks/Webhooks.API/Webhooks.API.csproj -nowarn:msb3202,nu1503
|
||||||
|
COPY . .
|
||||||
|
WORKDIR "/src/src/Services/Webhooks/Webhooks.API"
|
||||||
|
RUN dotnet build --no-restore -c $BUILD_CONFIGURATION
|
||||||
|
|
||||||
|
ENTRYPOINT ["dotnet", "run", "--no-build", "--no-launch-profile", "-c", "$BUILD_CONFIGURATION", "--"]
|
52
src/Services/Webhooks/Webhooks.API/azds.yaml
Normal file
52
src/Services/Webhooks/Webhooks.API/azds.yaml
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
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}
|
@ -53,6 +53,10 @@ Write-Host "Copying app.yaml and inf.yaml to Payment API" -ForegroundColor Yello
|
|||||||
Copy-Item "..\k8s\helm\app.yaml" -Destination ".\Services\Payment\Payment.API" -Force
|
Copy-Item "..\k8s\helm\app.yaml" -Destination ".\Services\Payment\Payment.API" -Force
|
||||||
Copy-Item "..\k8s\helm\inf.yaml" -Destination ".\Services\Payment\Payment.API" -Force
|
Copy-Item "..\k8s\helm\inf.yaml" -Destination ".\Services\Payment\Payment.API" -Force
|
||||||
|
|
||||||
|
Write-Host "Copying app.yaml and inf.yaml to Webhooks API" -ForegroundColor Yellow
|
||||||
|
Copy-Item "..\k8s\helm\app.yaml" -Destination ".\Services\Webhooks\Webhooks.API" -Force
|
||||||
|
Copy-Item "..\k8s\helm\inf.yaml" -Destination ".\Services\Webhooks\Webhooks.API" -Force
|
||||||
|
|
||||||
Write-Host "Copying app.yaml and inf.yaml to WebMVC" -ForegroundColor Yellow
|
Write-Host "Copying app.yaml and inf.yaml to WebMVC" -ForegroundColor Yellow
|
||||||
Copy-Item "..\k8s\helm\app.yaml" -Destination ".\Web\WebMVC" -Force
|
Copy-Item "..\k8s\helm\app.yaml" -Destination ".\Web\WebMVC" -Force
|
||||||
Copy-Item "..\k8s\helm\inf.yaml" -Destination ".\Web\WebMVC" -Force
|
Copy-Item "..\k8s\helm\inf.yaml" -Destination ".\Web\WebMVC" -Force
|
||||||
|
Loading…
x
Reference in New Issue
Block a user