mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-15 03:00:11 +00:00
14 lines
186 B
Text
14 lines
186 B
Text
|
#!/bin/bash
|
||
|
# Description: Kubernetes
|
||
|
set -e
|
||
|
|
||
|
_recipe brew
|
||
|
|
||
|
case $_PLATFORM in
|
||
|
darwin)
|
||
|
_brew kubernetes-cli
|
||
|
_brew kubernetes-helm
|
||
|
_brew stern
|
||
|
;;
|
||
|
esac
|