Skip to content

Commit f515448

Browse files
committed
restore-tests
1 parent 02c915f commit f515448

58 files changed

Lines changed: 17576 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
# Source: synapse/templates/admin-deployment.yaml
3+
apiVersion: apps/v1
4+
kind: Deployment
5+
metadata:
6+
name: admin
7+
labels:
8+
app: admin
9+
spec:
10+
replicas: 1
11+
selector:
12+
matchLabels:
13+
app: admin
14+
template:
15+
metadata:
16+
labels:
17+
app: admin
18+
spec:
19+
containers:
20+
- name: admin
21+
image: ghcr.io/etkecc/ketesa:v1.2.1
22+
imagePullPolicy: IfNotPresent
23+
resources:
24+
25+
{}
26+
ports:
27+
- containerPort: 8080
28+
name: admin
29+
protocol: TCP
30+
terminationGracePeriodSeconds: 10

charts/synapse/tests/golden/fixtures/test-admin-ingress-disabled.golden.yaml

Whitespace-only changes.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
# Source: synapse/templates/admin-ingress.yaml
3+
apiVersion: networking.k8s.io/v1
4+
kind: Ingress
5+
metadata:
6+
name: synapse-admin
7+
8+
annotations:
9+
nginx.ingress.kubernetes.io/proxy-body-size: 50m
10+
nginx.ingress.kubernetes.io/use-regex: "true"
11+
spec:
12+
ingressClassName: nginx
13+
tls:
14+
- hosts:
15+
- NOT-CONFIGURED
16+
secretName: admin-tls
17+
rules:
18+
- host: NOT-CONFIGURED
19+
http:
20+
paths:
21+
- path: /
22+
pathType: ImplementationSpecific
23+
backend:
24+
service:
25+
name: admin
26+
port:
27+
number: 80
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
# Source: synapse/templates/admin-ingress.yaml
3+
apiVersion: networking.k8s.io/v1
4+
kind: Ingress
5+
metadata:
6+
name: synapse-admin
7+
8+
annotations:
9+
nginx.ingress.kubernetes.io/proxy-body-size: 50m
10+
nginx.ingress.kubernetes.io/use-regex: "true"
11+
spec:
12+
ingressClassName: nginx
13+
tls:
14+
- hosts:
15+
- NOT-CONFIGURED
16+
rules:
17+
- host: NOT-CONFIGURED
18+
http:
19+
paths:
20+
- path: /
21+
pathType: ImplementationSpecific
22+
backend:
23+
service:
24+
name: admin
25+
port:
26+
number: 80
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
# Source: synapse/templates/admin-service.yaml
3+
apiVersion: v1
4+
kind: Service
5+
metadata:
6+
name: admin
7+
annotations:
8+
cloud.google.com/neg: '{"ingress":false}'
9+
spec:
10+
selector:
11+
app: admin
12+
ports:
13+
- name: admin
14+
port: 80
15+
targetPort: 8080

0 commit comments

Comments
 (0)