Somewhere, Something Incredible Is Waiting To Be Known !!!
(Move to ...)
Home
▼
Wednesday, 20 December 2023
Linux command to check CPU Utilization
›
awk '{u=$2+$4; t=$2+$4+$5; if (NR==1){u1=u; t1=t;} else print ($2+$4-u1) * 100 / (t-t1) "%"; }' \ <(grep 'cpu ...
Monday, 30 January 2023
fatal: [172.17.102.43]: FAILED! => {"changed": false, "msg": "A MySQL module is required: for Python 2.7 either PyMySQL, or MySQL-python, or for Python 3.X mysqlclient or PyMySQL. Consider setting ansible_python_interpreter to use the intended Python version."}
›
yum install MySQL-python
Wednesday, 25 January 2023
Useful notes for CKA exam
›
## Shortcuts to save time export do="--dry-run=client -o yaml" export now="--force --grace-period 0" k delete pod ...
Saturday, 30 July 2022
crossplane examples
›
https://github.com/crossplane-contrib
1 comment:
Tuesday, 26 July 2022
Creating EKS cluster
›
https://docs.aws.amazon.com/eks/latest/userguide/create-cluster.html
Checking EKS status using aws cli
›
aws eks describe-cluster \ --region us-east-1 \ --name my-cluster \ --query "cluster.status"
Creating EKS using aws CLI
›
aws eks create-cluster --region us-east-1 --name my-cluster --kubernetes-version 1.22 \ --role-arn arn:aws:iam::73095:role/AmazonEKSClus...
‹
›
Home
View web version