mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-06-19 20:28:15 +08:00
feat:fix kube config
This commit is contained in:
@ -1,10 +1,13 @@
|
||||
FROM microsoft/dotnet:2.2-aspnetcore-runtime AS base
|
||||
FROM microsoft/dotnet:2.1-aspnetcore-runtime AS base
|
||||
WORKDIR /app
|
||||
EXPOSE 80
|
||||
|
||||
FROM microsoft/dotnet:2.2-sdk AS build
|
||||
FROM microsoft/dotnet:2.1-sdk AS build
|
||||
WORKDIR /src
|
||||
COPY ["ApiGateway/ApiGateway.csproj", "ApiGateway/"]
|
||||
COPY ["../../src/Ocelot.Provider.Polly/Ocelot.Provider.Polly.csproj", "../../src/Ocelot.Provider.Polly/"]
|
||||
COPY ["../../src/Ocelot/Ocelot.csproj", "../../src/Ocelot/"]
|
||||
COPY ["../../src/Ocelot.Provider.Kubernetes/Ocelot.Provider.Kubernetes.csproj", "../../src/Ocelot.Provider.Kubernetes/"]
|
||||
RUN dotnet restore "ApiGateway/ApiGateway.csproj"
|
||||
COPY . .
|
||||
WORKDIR "/src/ApiGateway"
|
||||
@ -16,4 +19,4 @@ RUN dotnet publish "ApiGateway.csproj" -c Release -o /app
|
||||
FROM base AS final
|
||||
WORKDIR /app
|
||||
COPY --from=publish /app .
|
||||
ENTRYPOINT ["dotnet", "ApiGateway.dll"]
|
||||
ENTRYPOINT ["dotnet", "ApiGateway.dll"]
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"ReRoutes": [
|
||||
{
|
||||
"DownstreamPathTemplate": "/api/Category",
|
||||
"DownstreamPathTemplate": "/api/values",
|
||||
"DownstreamScheme": "http",
|
||||
"UpstreamPathTemplate": "/Category",
|
||||
"ServiceName": "DownstreamService",
|
||||
@ -21,7 +21,7 @@
|
||||
"Host": "localhost",
|
||||
"Port": 8001,
|
||||
"Namesapce": "dev",
|
||||
"Type": "k8s"
|
||||
"Type": "kube"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user