*** This version of Confluence is for testing only and contains a copy of content from June 29th 2026. No changes will be preserved. ***
Connect to the Server
- Generate EC2 Key (skip this step if you have EC2 private SSH key locally)
- ssh into / (open via aws ec2 console) the EC2 ubuntu VM (DIAPER-production-key.pem is in the box folder diaper confidential ask Liz for access), create the new user (if not yet created)
sudo adduser newuser
- switch to the new user
sudo su - newuser
- generate key by using
ssh-keygen
- Hence, we get id_rsa (private key) & id_rsa.pub (public key)
- Store into the folder in home/accountuser/.ssh
mv id_rsa.pub authorized_keys
- exit to ubuntu:
exit
- copy the private key into ubuntu's home for download (temporary), use 'chmod' to change file's permission if necessary:
sudo cp /home/newuser/.ssh/id_rsa /home/ubuntu/
- Download id_rsa to local
scp -i "DIAPER-production-key.pem" ubuntu@ec2-3-239-18-167.compute-1.amazonaws.com:/home/ubuntu/id_rsa ./
- ssh into / (open via aws ec2 console) the EC2 ubuntu VM (DIAPER-production-key.pem is in the box folder diaper confidential ask Liz for access), create the new user (if not yet created)
- Connect to EC2:
ssh -i <private.key> -L 6445:localhost:6443 username@ssh.diaper-project.com
- -L mean to forward server's port to local, because Kubernetes exposes port 6445, we would like to forward it to localhost:6443.
Username is your NetID. An admin account holder should be able to create the linux account for you.
If permission error
sudo chmod 600 private.key
- You should see a pop-up looks like this, which means that you have already connected to the server.
Connect to Kubernetes
Reminder, before connecting to the server. You need to ask the admin for a server token.
- Install Kubernetes by Docker (you might want to use Docker to build images), check out Install and turn on Kubernetes
- There are various UI explorers for Kubernetes. Such as k9s, check out Install (k9scli.io).
- Add the server cluster credentials in the Kubernetes config file. (In Mac, config file is located in ~/.kube). The configuration is as follows:
apiVersion: v1 clusters: - cluster: certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJlRENDQVIyZ0F3SUJBZ0lCQURBS0JnZ3Foa2pPUFFRREFqQWpNU0V3SHdZRFZRUUREQmhyTTNNdGMyVnkKZG1WeUxXTmhRREUzTURjeE56SXpNRFl3SGhjTk1qUXdNakExTWpJek1UUTJXaGNOTXpRd01qQXlNakl6TVRRMgpXakFqTVNFd0h3WURWUVFEREJock0zTXRjMlZ5ZG1WeUxXTmhRREUzTURjeE56SXpNRFl3V1RBVEJnY3Foa2pPClBRSUJCZ2dxaGtqT1BRTUJCd05DQUFSeG5lcFhxd1oxSUNGcXBrcmNqNkNIdDlxK3daSUV6N093ajM5VXJmRnoKTHBBS2tpUzhpS2NIRGNHMTZiazFjaEhzbVdTLzZjV0ptZm5ueEs3cTg2WDNvMEl3UURBT0JnTlZIUThCQWY4RQpCQU1DQXFRd0R3WURWUjBUQVFIL0JBVXdBd0VCL3pBZEJnTlZIUTRFRmdRVUpsRGJlajRVa2IyV0ZVRjBDREd2CnNrWkUzOG93Q2dZSUtvWkl6ajBFQXdJRFNRQXdSZ0loQUxKelRCZTQyZFZtMmtTWUJWQW5TZW05bWw1TSt1NVcKQVkya1cyamcvMy80QWlFQXdhMTlENk1IcThPTS9pMTlSWitXYUxrdkJYV3Uwb1MwWmJCV2UzdFJvY2c9Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K server: https://127.0.0.1:6445 name: diaper-server contexts: - context: cluster: diaper-server user: <Kubernetes service account name> name: diaper-server current-context: diaper-server kind: Config preferences: {} users: - name: <Kubernetes service account name> user: token: <Kubernetes service account token>
- Connect to the Kubernetes cluster using the command
k9s
- then you have
- If you don't see all pods running, it is probably because you're viewing a specific namespace. You can simply press '0' to view pods in all namespaces.
- To navigate between Services, Deployments, or Pods, you can type
:services or :deployments or :pods
- To port-forward a pod, type shift+F. To view the log, type l. To kill a pod, type ctrl+k.... You can always view these commands by typing ?(question mark).
More k9s Tutorial: derailed/k9s: 🐶 Kubernetes CLI To Manage Your Clusters In Style! (github.com)

