Skip to content

Files

Latest commit

e43461a · Nov 25, 2024

History

History

manifests

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Deployment

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 the db-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
...