diff --git a/infra/manifests/ingress.yaml b/infra/manifests/ingress.yaml index 35cf81c..4554058 100644 --- a/infra/manifests/ingress.yaml +++ b/infra/manifests/ingress.yaml @@ -20,6 +20,8 @@ spec: - hosts: - aramperes.ca secretName: aramperes.ca-wildcard-tls + - hosts: + - notetaking.club rules: - host: momoperes.ca http: @@ -75,4 +77,10 @@ spec: backend: serviceName: website-files servicePort: 9000 - + - host: notetaking.club + http: + paths: + - path: / + backend: + serviceName: ntc-comingsoon + servicePort: 7001 diff --git a/infra/manifests/ntc-comingsoon.yml b/infra/manifests/ntc-comingsoon.yml new file mode 100644 index 0000000..85d0bc9 --- /dev/null +++ b/infra/manifests/ntc-comingsoon.yml @@ -0,0 +1,14 @@ +apiVersion: v1 +kind: Service +metadata: + name: ntc-comingsoon + namespace: public +spec: + externalName: 10.137.248.204 + ports: + - name: http + port: 7001 + protocol: TCP + targetPort: 7001 + sessionAffinity: None + type: ExternalName