11 lines
387 B
Bash
Executable file
11 lines
387 B
Bash
Executable file
#!/bin/bash
|
|
set -exuo pipefail
|
|
|
|
header="# DO NOT EDIT: This file has been automatically generated by the script in helm/render-all.sh, edits may get overwritten"
|
|
|
|
# operators
|
|
for component in openbao external-secrets; do
|
|
echo "${header}" > ../k8s/operators/${component}/bundle.yaml
|
|
kubectl kustomize --enable-helm ${component}/ >> ../k8s/operators/${component}/bundle.yaml
|
|
done
|
|
|