-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathx_minikube_setup
More file actions
executable file
·24 lines (21 loc) · 1.2 KB
/
x_minikube_setup
File metadata and controls
executable file
·24 lines (21 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
# **************************************************************************** #
# #
# ::: :::::::: #
# x_minikube_setup :+: :+: :+: #
# +:+ +:+ +:+ #
# By: xvan-ham <marvin@42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2020/10/29 19:25:14 by xvan-ham #+# #+# #
# Updated: 2020/10/29 19:25:14 by xvan-ham ### ########.fr #
# #
# **************************************************************************** #
# Colors
green=$'\e[0;92;40m'
cyan=$'\e[0;1;36;40m'
reset=$'\e[0m'
echo -e "${green}Setting up ${cyan}minikube${green} in ${cyan}goinfre.${reset}"
mkdir -p /goinfre/$USER
mkdir -p /goinfre/$USER/.minikube
ln -s /goinfre/$USER/.minikube ~/.minikube
echo -e "${cyan}Minikube ${green}is correctly linked to goinfre.${reset}"