Skip to content

Commit

Permalink
domain
Browse files Browse the repository at this point in the history
  • Loading branch information
james-otten committed Aug 17, 2024
1 parent 7821081 commit a8159ac
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1 +1 @@
REACT_APP_API_ROOT="https://los-backend.andrew.mesh.nycmesh.net"
REACT_APP_API_ROOT="https://los-backend.mesh.nycmesh.net"
1 change: 1 addition & 0 deletions .github/workflows/helm-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,5 @@ jobs:
--set backend.los_database_url="${{ secrets.BACKEND_LOS_DATABASE_URL }}" \
--set backend.database_user="${{ secrets.BACKEND_DATABASE_USER }}" \
--set backend.database_password="${{ secrets.BACKEND_DATABASE_PASSWORD }}" \
--set los_backend.fqdn="${{ vars.BACKEND_FQDN }}" \
--set los.fqdn="${{ vars.FQDN }}"
19 changes: 19 additions & 0 deletions infra/los/templates/backend_ingress.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: {{ include "los.fullname" . }}-backend
namespace: {{ .Values.los_namespace }}
labels:
{{- include "los.labels" . | nindent 4 }}
spec:
rules:
- host: {{ .Values.los_backend.fqdn }}
http:
paths:
- path: "/"
pathType: ImplementationSpecific
backend:
service:
name: {{ include "los.fullname" . }}-backend
port:
number: {{ .Values.los_backend.port }}
File renamed without changes.

0 comments on commit a8159ac

Please sign in to comment.