Backtick Knowledge Base
  • Backtick Knowledge Base
  • 📊Statistics
    • Kernel Density Estimation
    • Tests
  • 🍂Machine Learning
    • Fit and predict
    • Encoding
    • Feature Scaling
    • Pipeline
    • Model Evaluation & Selection
      • The Bias-Variance Decomposition
      • Kullback–Leibler Divergence
      • AIC & BIC
      • Cross-Validation
    • Feature Selection
    • Dimensionality Reduction
    • Clustering
    • Pandas
  • 🧠Deep Learning
  • 🐍Python
    • Beautiful Data
    • S3
      • List bucket items
      • Delete bucket items
      • Get objects
      • Upload objects
      • Get files
      • Upload files
      • Read .csv-file to dataframe
      • Write dataframe to .csv-file
  • ☁️Cloud
    • GCP
    • AWS
      • Users & Policies
        • Basic setup
        • MFA
      • EKS
        • Setup
        • Kube Config
        • Dashboard
      • S3
        • Copying buckets
  • ❖ Distributed Computing
    • Map-Reduce
    • Spark
    • Dask
  • ⎈ Kubernetes
Powered by GitBook
On this page
  • Dashboard
  • Connect to the dashboard

Was this helpful?

  1. ☁️Cloud
  2. AWS
  3. EKS

Dashboard

Creating and connecting to the kubernetes dashboard on AWS EKS

PreviousKube ConfigNextS3

Last updated 5 years ago

Was this helpful?

Dashboard

AWS doesn't have a managed dashboard and does not automatically deploy the for you. Follow to deploy it to your cluster.

Connect to the dashboard

kubectl -n kube-system describe secret \
    $(kubectl -n kube-system get secret \
    | grep eks-admin \
    | awk '{print $1}')
    

# Outputs
Data
====
ca.crt:     1025 bytes
namespace:  11 bytes
token:      <token>    <-- This is your guy
kubectl proxy

Login with your token at:

open source version
this guide
http://localhost:8001/api/v1/namespaces/kubernetes-dashboard/services/https:kubernetes-dashboard:/proxy/#/login