8 lines
105 B
Bash
Executable File
8 lines
105 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
echo "Executing infra deploy."
|
|
|
|
kubectl kustomize deploy/infra | kubectl apply -f -
|
|
|
|
|