Skip to content

Instantly share code, notes, and snippets.

apiVersion: v1
kind: ServiceAccount
metadata:
name: tiller
namespace: kube-system
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: tiller
#!/bin/bash
git clone -q https://github.com/akinomyoga/ble.sh.git $HOME/ble.sh
git clone -q --depth=1 https://github.com/Bash-it/bash-it.git $HOME/.bash_it
echo 'installing bash-it...'
$HOME/.bash_it/install.sh --silent
sleep 1
@onedomain
onedomain / bashit.sh
Last active May 2, 2019 16:20
To install: $ curl -o- -L http://a.1auth.pw/install-bashit | bash
#!/bin/bash
if [ -f ~/.bashrc ]; then
if [ -f /usr/local/bin/bash ]; then
echo 'setting shell to /usr/local/bin/bash'
chsh -s /usr/local/bin/bash
elif [ -f /usr/bin/bash ]; then
echo 'setting shell to /usr/bin/bash'
chsh -s /usr/bin/bash
else