Skip to content

Instantly share code, notes, and snippets.

@kranurag7
kranurag7 / zsh.md
Created December 19, 2022 12:34
for new instances
  • Install zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
  • Install zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
  • Install zsh-syntax-highlighting
@kranurag7
kranurag7 / kube-bench-cronjob.yaml
Created August 3, 2022 11:06
A kubernetes cronjob that will run kube-bench every two minutes.
apiVersion: batch/v1
kind: CronJob
metadata:
name: kube-bench-weekly
spec:
schedule: "2 * * * *" # run this job every two minutes. Can be changed.
jobTemplate:
spec:
template:
spec: