diff --git a/04-Deployments-with-kubectl/04-01-CreateDeployment-Scaling-and-Expose-as-Service/README.md b/04-Deployments-with-kubectl/04-01-CreateDeployment-Scaling-and-Expose-as-Service/README.md index 5e0dc4e..e4bef82 100644 --- a/04-Deployments-with-kubectl/04-01-CreateDeployment-Scaling-and-Expose-as-Service/README.md +++ b/04-Deployments-with-kubectl/04-01-CreateDeployment-Scaling-and-Expose-as-Service/README.md @@ -2,7 +2,7 @@ ## Step-01: Introduction to Deployments - What is a Deployment? -- What all we can do using Deployment? +- What we can do using Deployment? - Create a Deployment - Scale the Deployment - Expose the Deployment as a Service diff --git a/06-kubernetes-dashboard/README.md b/06-kubernetes-dashboard/README.md index 9bb1f6a..28732f9 100644 --- a/06-kubernetes-dashboard/README.md +++ b/06-kubernetes-dashboard/README.md @@ -42,7 +42,7 @@ metadata: namespace: kubernetes-dashboard --- # Create ClusterRoleBinding for the k8s-admin -apiVersion: rbac.authorization.k8s.io/v1beta1 +apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding metadata: name: k8s-admin @@ -75,7 +75,7 @@ kubectl -n kubernetes-dashboard describe secret $(kubectl -n kubernetes-dashbo ### Access the kubernetes-dashboard using Public IP ``` # Get NodePort -kubectl get svc kubernetes-dashboard +kubectl get svc -n kubernetes-dashboard Observation: Make a note of port which starts with 3 (Example: 80:3xxxx/TCP). Capture the port 3xxxx and use it in application URL below. # kubernetes-dashboard URL