@@ -4,6 +4,8 @@ if [ -d secrets ]; then
44 echo " secrets directory already exists"
55 exit 1
66fi
7+ echo " talosconfig*" >> .gitignore
8+ echo " kubeconfig*" >> .gitignore
79echo " secrets*" >> .gitignore
810echo " !secrets.enc" >> .gitignore
911mkdir -p secrets
@@ -21,23 +23,59 @@ talosctl --talosconfig=talosconfig config endpoint 10.10.0.42 10.10.8.188 10.10.
2123
2224talosctl apply-config --insecure --file " ./worker.yaml" --nodes 10.10.18.178
2325
26+ talosctl apply-config --insecure --file " ./worker.yaml" --nodes 10.10.18.43
27+ talosctl apply-config --insecure --file " ./worker.yaml" --nodes 10.10.21.108
28+ talosctl apply-config --insecure --file " ./worker.yaml" --nodes 10.10.14.112
29+ talosctl apply-config --insecure --file " ./worker.yaml" --nodes 10.10.24.164
30+ talosctl apply-config --insecure --file " ./worker.yaml" --nodes 10.10.8.0
31+ talosctl apply-config --insecure --file " ./worker.yaml" --nodes 10.10.20.128
32+ talosctl apply-config --insecure --file " ./worker.yaml" --nodes 10.10.18.43
33+
2434# is this right?
25- talosctl --talosconfig=talosconfig config node 10.10.0.42 10.10.8.188 10.10.15.105 10.10.4.92 10.10.18.178
35+ talosctl --talosconfig=talosconfig config node 10.10.0.42 10.10.8.188 10.10.15.105 10.10.4.92 10.10.18.178 10.10.18.43 10.10.21.108 10.10.14.112 10.10.24.164 10.10.8.0 10.10.20.128 10.10.18.43
2636# talosctl --talosconfig=talosconfig config node 10.10.0.42
2737
38+ # talosctl --talosconfig=talosconfig get members
39+ # talosctl --talosconfig=talosconfig get nodestatus
40+ talosctl --talosconfig=talosconfig get volumestatus
41+ talosctl --talosconfig=talosconfig get machinestatus
42+ # talosctl --talosconfig=talosconfig get service
43+ talosctl --talosconfig=talosconfig get memorystats
44+ # talosctl --talosconfig=talosconfig get endpoint
45+ talosctl --talosconfig=talosconfig get diagnostic
46+ talosctl --talosconfig=talosconfig get cpustat
47+ # talosctl --talosconfig=talosconfig get blockdevice
48+ # talosctl --talosconfig=talosconfig get route
49+ talosctl --talosconfig=talosconfig get nodename
50+ talosctl --talosconfig=talosconfig get nodetaintspec
51+ # talosctl --talosconfig=talosconfig get nodeip
52+ # talosctl --talosconfig=talosconfig get modules
53+ # talosctl --talosconfig=talosconfig get hardwareaddress
54+ # talosctl --talosconfig=talosconfig get endpoint
55+ # talosctl --talosconfig=talosconfig get disk
56+ # talosctl --talosconfig=talosconfig get info
57+ # talosctl --talosconfig=talosconfig get identity
58+ talosctl --talosconfig=talosconfig get hostname
59+
60+ talosctl --talosconfig=talosconfig etcd status -n 10.10.8.188,10.10.15.105,10.10.4.92 # workers expected to fail
61+
2862talosctl --talosconfig=talosconfig kubeconfig ./kubeconfig -n 10.10.0.42
2963# talosctl --talosconfig=talosconfig kubeconfig -n 10.10.0.42
64+
3065kubectl --kubeconfig=kubeconfig get nodes
3166kubectl --kubeconfig=kubeconfig get nodes -o wide
3267kubectl --kubeconfig=kubeconfig get deployments
3368kubectl --kubeconfig=kubeconfig get pods
3469
3570kubectl --kubeconfig=kubeconfig create deployment hello-world --image=kicbase/echo-server:1.0 --dry-run=client -o yaml | kubectl --kubeconfig=kubeconfig apply -f -
71+
3672kubectl --kubeconfig=kubeconfig get service hello-world
3773kubectl --kubeconfig=kubeconfig describe deployment hello-world
3874kubectl --kubeconfig=kubeconfig describe service hello-world
3975kubectl --kubeconfig=kubeconfig get service hello-world
76+
4077kubectl --kubeconfig=kubeconfig expose deployment hello-world --type=LoadBalancer --port=8080
78+
4179kubectl --kubeconfig=kubeconfig describe deployment hello-world
4280kubectl --kubeconfig=kubeconfig describe service hello-world
4381kubectl --kubeconfig=kubeconfig get service hello-world
0 commit comments