Skip to content

Commit

Permalink
Copy over services from p47
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelldls committed Sep 3, 2024
1 parent 0623f2f commit dd86833
Show file tree
Hide file tree
Showing 34 changed files with 1,517 additions and 0 deletions.
46 changes: 46 additions & 0 deletions ingress.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# A manually constructed ingress to give us a URL into the opis service
apiVersion: v1
kind: Service
metadata:
labels:
app: epics-opis
ioc_group: p46
location: bl46p
name: epics-opis-static
spec:
ports:
- name: http
port: 80
protocol: TCP
targetPort: 80
- name: https
port: 443
protocol: TCP
targetPort: 443
selector:
app: epics-opis
sessionAffinity: None
type: LoadBalancer
loadBalancerIP: 172.23.168.217

---
kind: Ingress
apiVersion: networking.k8s.io/v1
metadata:
name: p46-opis-ingress
spec:
ingressClassName: nginx
tls:
- hosts:
- p46-opis.diamond.ac.uk
rules:
- host: p46-opis.diamond.ac.uk
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: epics-opis
port:
number: 80
Loading

0 comments on commit dd86833

Please sign in to comment.