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: 0 additions & 2 deletions components/manifests/base/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ resources:
- ambient-api-server-secrets.yml
- ambient-api-server-db.yml
- ambient-api-server-service.yml
- ambient-api-server-route.yml
- unleash-deployment.yaml

# Default images (can be overridden by overlays)
Expand All @@ -38,4 +37,3 @@ images:
newTag: latest
- name: quay.io/ambient_code/vteam_api_server
newTag: latest

Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
apiVersion: route.openshift.io/v1
kind: Route
metadata:
name: ambient-api-server
labels:
app: ambient-api-server
component: api
spec:
to:
kind: Service
name: ambient-api-server
port:
targetPort: api
tls:
termination: edge
insecureEdgeTerminationPolicy: Redirect
1 change: 1 addition & 0 deletions components/manifests/overlays/local-dev/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ namespace: vteam-dev
# Resources (base + local-dev-specific)
resources:
- ../../base
- ambient-api-server-route.yaml
- build-configs.yaml
- dev-users.yaml
- frontend-auth.yaml
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
apiVersion: route.openshift.io/v1
kind: Route
metadata:
name: ambient-api-server
labels:
app: ambient-api-server
component: api
spec:
to:
kind: Service
name: ambient-api-server
port:
targetPort: api
tls:
termination: edge
insecureEdgeTerminationPolicy: Redirect
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ namespace: ambient-code
# Manage this secret separately: oc apply -f github-app-secret.yaml -n ambient-code
resources:
- ../../base
- ambient-api-server-route.yaml
- route.yaml
- backend-route.yaml
- public-api-route.yaml
Expand Down
Loading