mirror of
				https://github.com/nsnail/Ocelot.git
				synced 2025-11-04 17:40:50 +08:00 
			
		
		
		
	kubernetes provider (#772)
* feat: Kubernetes ServiceDiscoveryProvider * 编写k8s测试例子 * feat:fix kube config * feat: remove port * feat : complete the k8s test * feat : add kubeserviceDiscovery test * feat : add kube provider unittest * feat :add kubetnetes docs how to use ocelot with kubetnetes docs * keep the configuration as simple as possible, no qos, no cache * fix: use http * add PollingKubeServiceDiscovery * feat : refactor logger * feat : add pollkube docs * feat:Remove unnecessary code * feat : code-block json
This commit is contained in:
		
				
					committed by
					
						
						Marcelo Castagna
					
				
			
			
				
	
			
			
			
						parent
						
							05ede70e62
						
					
				
				
					commit
					44dccf1fce
				
			
							
								
								
									
										22
									
								
								samples/OelotKube/Dockerfile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								samples/OelotKube/Dockerfile
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,22 @@
 | 
			
		||||
FROM microsoft/dotnet:2.1-aspnetcore-runtime AS base
 | 
			
		||||
WORKDIR /app
 | 
			
		||||
EXPOSE 80
 | 
			
		||||
 | 
			
		||||
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"
 | 
			
		||||
RUN dotnet build "ApiGateway.csproj" -c Release -o /app
 | 
			
		||||
 | 
			
		||||
FROM build AS publish
 | 
			
		||||
RUN dotnet publish "ApiGateway.csproj" -c Release -o /app
 | 
			
		||||
 | 
			
		||||
FROM base AS final
 | 
			
		||||
WORKDIR /app
 | 
			
		||||
COPY --from=publish /app .
 | 
			
		||||
ENTRYPOINT ["dotnet", "ApiGateway.dll"]
 | 
			
		||||
		Reference in New Issue
	
	Block a user