Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ services:
dockerfile: ./docker/Dockerfile
args:
VITE_ENVIRONMENT: production
VITE_SPACE_BASE_URL: http://localhost:5403/api/v1
VITE_SPACE_BASE_URL: http://localhost:5403/api/v1 # Change to http://localhost/api/v1 if running SPACE in kubernetes
depends_on:
- space-server
networks:
Expand Down
4 changes: 4 additions & 0 deletions k8s/deploy.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
cd ..
echo "Building docker images..."
docker compose build
cd k8s
echo "Creating namespace..."
kubectl apply -f space-namespace.yml
echo "Deploying ingress controller..."
Expand Down
2 changes: 1 addition & 1 deletion k8s/undeploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ echo "Removing services..."
kubectl delete -f pods/
echo "Removing ingress controller..."
kubectl delete -f controllers/
echo "Creating namespace..."
echo "Removing namespace..."
kubectl delete -f space-namespace.yml
Loading