Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
prep for dns switch
Browse files Browse the repository at this point in the history
  • Loading branch information
skylenet committed Sep 5, 2023
1 parent 5525cb8 commit cd6042f
Show file tree
Hide file tree
Showing 5 changed files with 72 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,22 @@ spec:
ingressClassName: ingress-nginx-public
tls:
- hosts:
- "docs.{{ .Values.domain }}"
- "docs.{{ .Values.testdomain }}"
secretName: ingress-sourcify-docs
- hosts:
- "docs.{{ .Values.domain }}"
secretName: ingress-sourcify-og-docs
rules:
- host: "docs.{{ .Values.testdomain }}"
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: sourcify-docs
port:
number: 80
- host: "docs.{{ .Values.domain }}"
http:
paths:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,22 @@ spec:
ingressClassName: ingress-nginx-public
tls:
- hosts:
- "playground.{{ .Values.domain }}"
- "playground.{{ .Values.testdomain }}"
secretName: ingress-sourcify-playground
- hosts:
- "playground.{{ .Values.domain }}"
secretName: ingress-sourcify-og-playground
rules:
- host: "playground.{{ .Values.testdomain }}"
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: sourcify-playground
port:
number: 80
- host: "playground.{{ .Values.domain }}"
http:
paths:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,22 @@ spec:
ingressClassName: ingress-nginx-public
tls:
- hosts:
- "repo.{{ .Values.domain }}"
- "repo.{{ .Values.testdomain }}"
secretName: ingress-sourcify-repo
- hosts:
- "repo.{{ .Values.domain }}"
secretName: ingress-sourcify-og-repo
rules:
- host: "repo.{{ .Values.testdomain }}"
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: sourcify-repository
port:
number: 80
- host: "repo.{{ .Values.domain }}"
http:
paths:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,22 @@ spec:
ingressClassName: ingress-nginx-public
tls:
- hosts:
- "{{ .Values.domain }}"
- "{{ .Values.testdomain }}"
secretName: ingress-sourcify-root
- hosts:
- "{{ .Values.domain }}"
secretName: ingress-sourcify-og-root
rules:
- host: "{{ .Values.testdomain }}"
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: sourcify-ui
port:
number: 80
- host: "{{ .Values.domain }}"
http:
paths:
Expand Down Expand Up @@ -46,9 +59,22 @@ spec:
ingressClassName: ingress-nginx-public
tls:
- hosts:
- "{{ .Values.domain }}"
- "{{ .Values.testdomain }}"
secretName: ingress-sourcify-root
- hosts:
- "{{ .Values.domain }}"
secretName: ingress-sourcify-og-root
rules:
- host: "{{ .Values.testdomain }}"
http:
paths:
- path: /server(/|$)(.*)
pathType: Prefix
backend:
service:
name: sourcify-server
port:
number: 80
- host: "{{ .Values.domain }}"
http:
paths:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@

domain: "sourcify-staging.ethpandaops.io"
testdomain: "sourcify-staging.ethpandaops.io"
domain: "staging.sourcify.dev"

0 comments on commit cd6042f

Please sign in to comment.