abbesm0hamed / kubernetes-devops-security

DevSecOps on kodekloud

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

DevSecOps on kodekloud


Languages

Language:Shell 55.8%Language:Java 39.8%Language:Ruby 3.2%Language:Dockerfile 1.1%