7 lines
236 B
Bash
7 lines
236 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
kubectl create namespace cert-manager
|
||
|
kubectl create namespace futureporn
|
||
|
kubectl create namespace velero
|
||
|
|
||
|
exit 0 # important to keep the Makefile chain going even if namespaces already existed and kubectl returned non-zero
|