Skip to content

Project to connect to eks cluster and perform some patching tasks.

Notifications You must be signed in to change notification settings

a-kumar5/kube-dashboard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

kube-scheduler

Project to connect to eks cluster and perform some patching tasks.

If the container is not able to fetch the pod list, create below ClusterRole and ClusterRoleBinding

---
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
  name: pods-list
rules:
- apiGroups: [""]
  resources: ["pods"]
  verbs: ["list"]

---
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
  name: pods-list
subjects:
- kind: ServiceAccount
  name: default
  namespace: default
roleRef:
  kind: ClusterRole
  name: pods-list
  apiGroup: rbac.authorization.k8s.io

when pod is running in minikube and you want expose the application use port-forwarding

kubectl port-forward kube-dashboard-deployment-b8896f4d-b8tlx 8000:8000

About

Project to connect to eks cluster and perform some patching tasks.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published