-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmakefile
More file actions
27 lines (27 loc) · 780 Bytes
/
makefile
File metadata and controls
27 lines (27 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
.PHONY: verify
verify:
cat /var/log/cloud-init-output.log | grep "CloudInit Finished Successfully"
test -f /root/.trainingrc
grep "source /root/.trainingrc" /root/.bashrc
kubectx
kubens
kubectl krew version
netstat -tulpan | grep 8088 # check if openlitespeed is blocking port 8088
containerd --version
kubelet --version
kubeadm version
kubectl version
test -n "$(IP)"
test -n "$(API_SERVER)"
kubectl get node $(hostname) | grep Ready
kubectl -n kube-system get pod -l k8s-app=metrics-server | grep Running
kubectl -n default get pod my-suboptimal-pod | grep Running
openssl version
kubesec version
trivy --version
strace --version
apparmor_status --enabled
runc --version
runsc --version
falco --version
echo "Training Environment successfully verified"