filmov
tv
Run .NET 5 API on localhost Kubernetes Cluster

Показать описание
video to run a docker container on localhost:
YAML manifest file for local kubernetes deployment
kind: Deployment
apiVersion: apps/v1
metadata:
name: {microservice-name/image-name}
spec:
replicas: 1
selector:
matchLabels:
app: {microservice-name/image-name}
template:
metadata:
labels:
app: {microservice-name/image-name}
spec:
containers:
- name: {container-name}
image: {acr url/image-name}
imagePullPolicy: IfNotPresent
ports:
- containerPort: 80
---
apiVersion: v1
kind: Service
metadata:
name: {microservice-name/image-name}
spec:
type: LoadBalancer
ports:
- name: {microservice-name/image-name}
port: 5000
targetPort: 80
selector:
app: {microservice-name/image-name}
YAML manifest file for local kubernetes deployment
kind: Deployment
apiVersion: apps/v1
metadata:
name: {microservice-name/image-name}
spec:
replicas: 1
selector:
matchLabels:
app: {microservice-name/image-name}
template:
metadata:
labels:
app: {microservice-name/image-name}
spec:
containers:
- name: {container-name}
image: {acr url/image-name}
imagePullPolicy: IfNotPresent
ports:
- containerPort: 80
---
apiVersion: v1
kind: Service
metadata:
name: {microservice-name/image-name}
spec:
type: LoadBalancer
ports:
- name: {microservice-name/image-name}
port: 5000
targetPort: 80
selector:
app: {microservice-name/image-name}
Publish .NET 5 Web API on IIS || .NET Core Hosting on IIS
Run ASP.NET Core Web API Project Using CLI | ASP.NET Core 5.0 Web API tutorial
How To Consume WEB API in ASP.NET Core MVC | ASP.NET Web API | Read Data
How to Deploy ASP.NET Core Web API on IIS Windows Server || Deploy ASP.NET Web API on IIS .NET 7.0
Dependency injection and clean service registration | ASP.NET 5 REST API Tutorial 3
Setting up ApiKey-based Authentication | ASP.NET Core 5 REST API Tutorial 24
Blazor WebAssembly CRUD Using .NET 5 Web API
How to Debug Asp.Net Core .Net5 API Controller and DBContext Connection
#5- Run & Test API using swagger & postman - Asp.Net Core Web Api - Arabic
.NET 5 REST API Tutorial - Build From Scratch With C#
ASP.NET Web API CRUD Operations - .NET8 and Entity Framework Core Tutorial
Change Launch URL for ASP.NET Core Web API (.NET 6)
Creating resources using POST | ASP.NET 5 REST API Tutorial 4
🚀 .NET 5 Web API & Entity Framework Core Jumpstart
Asp.Net Core Web API - CRUD operations in REST API using Entity Framework Core and SQL Server
ASP Net core Web API Deploy to Azure App Service
.NET 5 REST API Tutorial
MVC REST API Tutorial in 5 Hours | ASP.NET CORE Web API C# | ASP.NET Web API | .NET 5
Create a React App with .NET 5 API Backend in VSCode (Entity Framework Core & Postgres)
Restricting endpoints with Roles | ASP.NET Core 5 REST API Tutorial 18
Part 13 HttpPost in Web/REST api || Asp.Net Core Web API Tutorials C#
Part 11 Documenting web api responses Web/REST API || Asp.Net Core Web API Tutorials C#
Create, Build and Run the Web API Core project using Visual Studio | Asp.Net Core Web API tutorial
Hosting .NET Core 6.0 Web API in IIS Server using VS Code | .NET Core 6.0 deployment from VS Code
Комментарии