Install using Helm - In this command we've set few values like namespace, pvc, sc - as created in intial steps; service type, jenkins master and slave resource requests and limit for fine grained usage of all resources under EKS
kubectl get sc -n jenkins
kubectl get pvc -n jenkins
kubectl get pv -n jenkins
helm list -n jenkins
kubectl get po -n jenkins
kubectl get pvc -n jenkins
<html> <style> pre code { background-color: #eee; border: 1px solid #999; display: block; padding: 20px; color: black; } code{ color: blue; } <style> <body> <code> #!/bin/bash read -p "What is your name ?" name echo "Welcome $name!" <code> <body> <html> Output of this code would be as below #!/bin/bash read -p "What is your name ?" name echo "Welco...
Comments
Post a Comment