-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate-kubernetes.sh
19 lines (17 loc) · 1010 Bytes
/
update-kubernetes.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# **************************************************************************** #
# #
# ::: :::::::: #
# update-kubernetes.sh :+: :+: :+: #
# +:+ +:+ +:+ #
# By: felix <[email protected]> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2020/07/20 11:27:56 by fgalaup #+# #+# #
# Updated: 2021/01/12 11:22:50 by felix ### ########lyon.fr #
# #
# **************************************************************************** #
#!/bin/sh
if minikube status > /dev/null 2>&1
then
# Deploy with kubernetes
kubectl apply -k ./srcs/Kubernetes/
fi