Ben Chuanlong Du's Blog

It is never too late to learn.

Fix the CrashLoopBackOff Issue of Pod in Kubernetes

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

Define command as ["/busybox/sh", "-c", "tail -f /dev/null"] instead of ["/busybox/sh", "-c", "tail", "-f", "/dev/null"]

Fix Authentication Error of GitHub Repositories on DockerHub

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

Solution

  1. Got to Account Seetings

  2. Navigate to the Linked Accounts seciton

  3. Unlink GitHub and relink it.

References

https://github.com/docker/hub-feedback/issues/416

Tips on winget

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

You can search for packages on https://winget.run/.

winget search grep
winget install grep

Notice that winget does not handle the PATH environment if you install a command-line tool. You …