9 lines
133 B
Bash
Executable File
9 lines
133 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [ -f base/kustomization.yaml ]; then
|
|
cat >base/_manifest.yaml
|
|
kubectl kustomize base
|
|
else
|
|
cat
|
|
fi
|