Skip to content

paglipay/DockerAndKubernetesCourseCode

 
 

Repository files navigation

Docker and Kubernetes Course

https://codewithdan.com/products/docker-kubernetes

View the Kubernetes for Developers: Core Concepts video course on Pluralsight:

https://app.pluralsight.com/library/courses/kubernetes-developers-core-concepts/table-of-contents

kubectl -n kube-system create serviceaccount kubeconfig-sa kubectl create clusterrolebinding add-on-cluster-admin --clusterrole=cluster-admin --serviceaccount=kube-system:kubeconfig-sa

apiVersion: v1 kind: Secret metadata: name: oke-kubeconfig-sa-token namespace: kube-system annotations: kubernetes.io/service-account.name: kubeconfig-sa type: kubernetes.io/service-account-token

kubectl apply -f oke-kubeconfig-sa-token.yaml

kubectl describe secrets oke-kubeconfig-sa-token -n kube-system

kubectl run my-nginx --image=nginx:alpine

kubectl port-forward my-nginx 8080:80

kubectl delete pod my-nginx

About

Course code for the Docker and Kubernetes course: https://codewithdan.com/products/docker-kubernetes

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 42.3%
  • JavaScript 21.4%
  • HTML 10.7%
  • Handlebars 6.4%
  • SCSS 6.4%
  • TypeScript 6.4%
  • Other 6.4%