kubernetes-devops-security

Fork and Clone this Repo

Clone to Desktop

Create a local cluster with kubeadm by running the script in side the local-devsecops-cluster-installation/setup/vm...

replaced the weave.net solution with calico because weave does have some problems during installation

NodeJS Microservice - Docker Image -

docker run -p 8787:5000 siddharth67/node-service:v1

curl localhost:8787/plusone/99

NodeJS Microservice - Kubernetes Deployment -

kubectl create deploy node-app --image siddharth67/node-service:v1

kubectl expose deploy node-app --name node-service --port 5000 --type ClusterIP

curl node-service-ip:5000/plusone/99