Browse Source

CI: add file for substrate-ui and substrate-ui-light domains (#767)

gabriel klawitter 6 years ago
parent
commit
75d901136f
1 changed files with 33 additions and 0 deletions
  1. 33 0
      deployment.extras.yml

+ 33 - 0
deployment.extras.yml

@@ -0,0 +1,33 @@
+apiVersion: extensions/v1beta1
+kind: Ingress
+metadata:
+  name: production-ingress-substrate-ui
+  namespace: poc3-122
+  annotations:
+    kubernetes.io/ingress.class: traefik
+    traefik.frontend.entryPoints: "https,http"
+spec:
+  rules:
+  - host: substrate-ui.parity.io
+    http:
+      paths:
+      - backend:
+          serviceName: production-service
+          servicePort: 80
+---
+apiVersion: extensions/v1beta1
+kind: Ingress
+metadata:
+  name: production-ingress-substrate-ui-light
+  namespace: poc3-122
+  annotations:
+    kubernetes.io/ingress.class: traefik
+    traefik.frontend.entryPoints: "https,http"
+spec:
+  rules:
+  - host: substrate-ui-light.parity.io
+    http:
+      paths:
+      - backend:
+          serviceName: production-service
+          servicePort: 80