Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions dns/zone-configs/k8s.io._0_base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -361,11 +361,6 @@ _acme-challenge.k8s-testgrid:
_acme-challenge.testgrid:
type: CNAME
value: 3163ff75-f72a-4b9e-b1ff-3c1930137e82.3.authorize.certificatemanager.goog.
# Running on GKE (@chases2)
testgrid-data:
- type: A
values:
- 34.98.86.92
# Verify that @ixdy owns testgrid.k8s.io, necessary to set up custom domain in GAE
7ujw4gp3z2cq.testgrid:
type: CNAME
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/gke-prow/prow/gateway.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,5 +99,5 @@ spec:
- testgrid-api.prow.k8s.io
rules:
- backendRefs:
- name: testgrid-proxy
- name: testgrid-api
port: 80
67 changes: 0 additions & 67 deletions kubernetes/gke-prow/prow/testgrid.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,70 +105,3 @@ spec:
- protocol: TCP
port: 80
targetPort: 80
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: testgrid-proxy
labels:
app: testgrid-proxy
spec:
replicas: 1
selector:
matchLabels:
app: testgrid-proxy
template:
metadata:
labels:
app: testgrid-proxy
spec:
containers:
- name: nginx
image: cgr.dev/chainguard/nginx
ports:
- name: http
containerPort: 80
resources:
requests:
cpu: 100m
memory: 128Mi
limits:
cpu: 250m
memory: 256Mi
volumeMounts:
- name: nginx-config
mountPath: /etc/nginx/conf.d/nginx.conf
subPath: nginx.conf
volumes:
- name: nginx-config
configMap:
name: nginx-proxy-config
---
apiVersion: v1
kind: ConfigMap
metadata:
name: nginx-proxy-config
data:
nginx.conf: |
server {
listen 80;
server_name localhost;

location / {
proxy_pass http://testgrid-data.k8s.io/;
}
}

---
apiVersion: v1
kind: Service
metadata:
name: testgrid-proxy
spec:
selector:
app: testgrid-proxy
ports:
- protocol: TCP
port: 80
targetPort: 80
type: ClusterIP