quick_apps
Quick Application Deployments in Kubernetes
1. Deploying Nginx (wwwnginx namespace)
wwwnginx namespace)kubectl create ns wwwnginx kubectl apply -n wwwnginx -f https://raw.githubusercontent.com/xxradar/kuberneteslearning/master/nginx-deployment.yaml kubectl apply -n wwwnginx -f https://raw.githubusercontent.com/xxradar/kuberneteslearning/master/nginx-expose-clusterip.yamlkubectl run siege-www -it -n wwwnginx --image=dockersec/siege --rm -- siege -c1 -r1 http://my-nginx-clusterip
2. Deploying Radarhack App (radarhack namespace)
radarhack namespace)kubectl create ns radarhack kubectl apply -n radarhack -f https://raw.githubusercontent.com/xxradar/kuberneteslearning/master/radarhack-deploy.yaml kubectl apply -n radarhack -f https://raw.githubusercontent.com/xxradar/kuberneteslearning/master/radarhack-expose-clusterip.yamlkubectl run siege-radarhack -it -n radarhack --image=dockersec/siege --rm -- siege -c1 -r1 http://my-radarhack-clusterip
3. Testing from a Separate Client Namespace
4. Additional Demo Application (app_routable_demo)
app_routable_demo)Last updated