/dotnet-core-helloworld

This project is beeing used by Jenkins running on Kubernetes for .Net Core Docker deployment test.

Primary LanguageC#

Simple project for pipeline tests

This project is beeing used by Jenkins running on Kubernetes for .Net Core Docker deployment.

Build and Run steps

docker build -t helloworld .
docker run -d -p 5000:80 helloworld

Deploy to Kubernetes

kubectl create ns helloworld
kubectl apply -f helloworld-deployment.yaml --namespace=helloworld
kubectl create -f helloworld-service.yaml --namespace=helloworld