Skip to content

Instantly share code, notes, and snippets.

@jwkidd3
Last active December 21, 2018 16:40
Show Gist options
  • Save jwkidd3/22902cb8d04ac41eb832852e64abc6d6 to your computer and use it in GitHub Desktop.
Save jwkidd3/22902cb8d04ac41eb832852e64abc6d6 to your computer and use it in GitHub Desktop.
Kubernetes
kubectl create -f https://raw.githubusercontent.com/kubernetes/dashboard/master/aio/deploy/recommended/kubernetes-dashboard.yaml
admin.yml
apiVersion: v1
kind: ServiceAccount
metadata:
name: admin-user
namespace: kube-system
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: admin-user
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: cluster-admin
subjects:
- kind: ServiceAccount
name: admin-user
namespace: kube-system
kubectl apply -f admin.yml
kubectl -n kube-system describe secret $(kubectl -n kube-system get secret | grep admin-user | awk '{print $1}')
kubectl proxy
http://localhost:8001/api/v1/namespaces/kube-system/services/https:kubernetes-dashboard:/proxy/.
AWS Stuff
https://001613358280.signin.aws.amazon.com/console
awscli
pip install awscli
aws configure
iamauthenticator
https://amazon-eks.s3-us-west-2.amazonaws.com/1.11.5/2018-12-06/bin/linux/amd64/aws-iam-authenticator
chmod +x ./aws-iam-authenticator
move to /usr/bin/local
aws-iam-authenticator help
kubectl
curl -o kubectl https://amazon-eks.s3-us-west-2.amazonaws.com/1.11.5/2018-12-06/bin/linux/amd64/kubectl
chmod +x ./kubectl
sudo mv ./kubectl /usr/local/bin
kubectl version --short --client
eksctl
curl --silent --location "https://github.com/weaveworks/eksctl/releases/download/latest_release/eksctl_$(uname -s)_amd64.tar.gz" | tar xz -C /tmp
sudo mv /tmp/eksctl /usr/local/bin
aws ecr
aws ecr get-login --region region --no-include-email
tag and push
https://www.surveymonkey.com/r/MZCF6B2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment