|
| 1 | +- [ ] More lessons: |
| 2 | + |
| 3 | + - [ ] https://github.com/kvaps/kubectl-build (or https://github.com/vmware-tanzu/buildkit-cli-for-kubectl) |
| 4 | + - [ ] https://BuildPacks.io, see [KubeCon Prez](https://static.sched.com/hosted_files/kccnceu2021/f3/IntroductionToCloudNativeBuildpacks_StephenLevineJesseBrown_v1.pdf) |
| 5 | + - [ ] https://github.com/kvaps/kubectl-node-shell (+ https://github.com/containers/toolbox ?) |
| 6 | + - [ ] https://knative.dev |
| 7 | + - [ ] https://www.openfaas.com |
| 8 | + |
| 9 | +- [ ] Other Kubernetes distributions than `minikube`: |
| 10 | + |
| 11 | + - [ ] kubeadm |
| 12 | + - [ ] kind |
| 13 | + - [ ] https://github.com/rootless-containers/usernetes |
| 14 | + - [ ] https://microk8s.io |
| 15 | + - [ ] https://k3s.io (https://k3d.io) |
| 16 | + - [ ] https://k0sproject.io |
| 17 | + |
| 18 | +- [ ] CoreOS instead of Debian on GCP: Debian works, but CoreOS SSH keys are somehow missing: |
| 19 | + (update https://docs.fedoraproject.org/en-US/fedora-coreos/provisioning-gcp/) |
| 20 | + |
| 21 | + gcloud compute instances create kubernetes-codelab --zone europe-west4-c --min-cpu-platform "Intel Haswell" --image-project debian-cloud --image-family debian-10 |
| 22 | + gcloud compute ssh kubernetes-codelab |
| 23 | + |
| 24 | + gcloud compute instances create coreos2 --zone europe-west4-c --min-cpu-platform "Intel Haswell" --image-project fedora-coreos-cloud --image-family fedora-coreos-next |
| 25 | + gcloud compute ssh core@coreos2 |
| 26 | + Using OS Login user [$USER] instead of requested user [core] |
| 27 | + $USER@$IP: Permission denied (publickey,gssapi-keyex,gssapi-with-mic). |
| 28 | + |
| 29 | + gcloud compute instances create coreos1 --zone europe-west4-c --min-cpu-platform "Intel Haswell" --image-project fedora-coreos-cloud --image-family fedora-coreos-stable |
| 30 | + gcloud compute ssh coreos1 |
| 31 | + $YOU@$IP: Permission denied (publickey,gssapi-keyex,gssapi-with-mic). |
| 32 | + |
| 33 | + gcloud compute ssh core@coreos1 |
| 34 | + Using OS Login user [$YOU] instead of requested user [core] |
| 35 | + |
| 36 | + ssh: connect to host $IP port 22: Connection timed out |
| 37 | + ERROR: (gcloud.compute.ssh) [/usr/bin/ssh] exited with return code [255]. |
| 38 | + |
1 | 39 | - [ ] GitHub Action (pre-commit hook) to lint all markdown, check links, etc.
|
2 | 40 |
|
3 | 41 | - [ ] https://github.com/googlecodelabs/tools ?
|
|
0 commit comments