Last active
December 21, 2018 16:40
-
-
Save jwkidd3/22902cb8d04ac41eb832852e64abc6d6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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