Install Helm on Ubuntu 20.10

Go to the release page to get the download link for the latest version of helm. https://github.com/helm/helm/releases I prefer the binaries to be in my ~/.bin/ directory as it is already in my PATH >_ cd ~/.bin >_ wget https://get.helm.sh/helm-v3.4.0-linux-amd64.tar.gz --2020-11-06 19:41:28-- https://get.helm.sh/helm-v3.4.0-linux-amd64.tar.gz Resolving get.helm.sh (get.helm.sh)… 152.195.19.97, 2606:2800:11f:1cb7:261b:1f9c:2074:3c Connecting to get.helm.sh (get.helm.sh)|152.195.19.97|:443… connected. HTTP request sent, awaiting response… 200 OK Length: 13315267 (13M) [application/x-tar] Saving to: ‘helm-v3.4.0-linux-amd64.tar.gz’ helm-v3.4.0-linux-amd64.tar.gz 100%[======================================================>] 12.70M 77....

2020-11-08 · 2 min · Danesh Manoharan

Install minikube on Ubuntu 20.10

I’m installing minikube on my shiny new Pop!OS 20.10 install which is based on Ubuntu 20.10. >_lsb_release -a No LSB modules are available. Distributor ID: Pop Description: Pop!_OS 20.10 Release: 20.10 Codename: groovy I prefer to have my standalone application binaries placed in ~/.bin/ which is already included in my PATH. >_ cd ~/.bin >_ curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 53....

2020-11-07 · 1 min · Danesh Manoharan

Start docker after NFS mounts come online

Problem Some of my docker containers access resources from a NAS over NFS. On reboot, the Docker service comes up before the NFS paths are mounted, this causes the services within my containers to fail. Restating the docker service, systemctl restart docker fixes this but I’d rather the containers come up properly the first time. Solution Add a systemd drop-in unit for the docker service instructing it to wait for the NFS mount to come online before starting....

2020-09-01 · 2 min · Danesh Manoharan

nss: /usr/lib/p11-kit-trust.so exists in filesystem

My Arch update broke today with the following error which was due to a missing soname entry in the older nss packages. The error was identified and a post describing the error with a fix was posted to the ArchLinux news feed. Read Here ? sudo pacman -Syu ..... ..... (201/201) checking for file conflicts [------------------------------------------------------------] 100% error: failed to commit transaction (conflicting files) nss: /usr/lib/p11-kit-trust.so exists in filesystem lib32-nss: /usr/lib32/p11-kit-trust....

2020-04-23 · 1 min · Danesh Manoharan

Change BASH shell to FISH shell

I used the change shell command chsh to change the default shell environment for my id from BASH to the FISH shell. >_ chsh Changing shell for danesh.manoharan. New shell [/bin/bash]: /usr/bin/fish Password: Shell changed. >_ chsh -s /usr/bin/fish Changing shell for danesh.manoharan. chsh: Shell changed.

2020-04-20 · 1 min · Danesh Manoharan