To deploy the module make sure you do the following:
- Have a schema
api
created in the database to be used by the module - Set the database URL to the correct value. Run
echo -n url | base64
and paste the output in thedb-secret.yaml
- Update the container versions in
api-headless.patch.yaml
- Verify the database endpoint configuration
ℹ️ Make sure you have *-secret.local.yaml
version of all your *-secret.yaml
files
View resulting yaml via Kustomize:
kubectl kustomize manifests/overlays/development
Apply via Kustomize:
kubectl apply -k manifests/overlays/development
or with plain kubectl apply
kubectl create namespace podkrepi-api
kubectl apply -f db-secret.yaml
kubectl apply -f api-headless.yaml
...