remove brechy-playground

This commit is contained in:
James Andariese 2023-07-21 18:47:41 -05:00
parent 516ca8542d
commit b32794163d
2 changed files with 0 additions and 71 deletions

View File

@ -1,6 +0,0 @@
apiVersion: v1
kind: Namespace
metadata:
labels:
wildcard-tls.kn8v.com/copy: "true"
name: brechy-playground

View File

@ -1,65 +0,0 @@
apiVersion: apps/v1
kind: Deployment
metadata:
namespace: brechy-playground
name: stampy-mctimestamp
spec:
replicas: 1
selector:
matchLabels:
app: stampy-mctimestamp
strategy:
type: Recreate
template:
metadata:
labels:
app: stampy-mctimestamp
spec:
containers:
- env:
- name: PORT
value: "5000"
image: ghcr.io/brechy/stampy-mctimestamp:sha-2cd3164
name: stampy-mctimestamp
restartPolicy: Always
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: stampy-mctimestamp
namespace: brechy-playground
spec:
ingressClassName: istio
rules:
- host: stampy-mctimestamp.strudelline.net
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: stampy-mctimestamp
port:
number: 5000
tls:
- hosts:
- stampy-mctimestamp.strudelline.net
secretName: wildcard-tls
---
apiVersion: v1
kind: Service
metadata:
labels:
app: stampy-mctimestamp
name: stampy-mctimestamp
namespace: brechy-playground
spec:
selector:
app: stampy-mctimestamp
ports:
- name: http
port: 5000
protocol: TCP
targetPort: 5000
clusterIP: None
type: ClusterIP