Initial commit

This commit is contained in:
kddd21a
2026-07-29 10:47:40 +00:00
commit 402c3ec6ed
171 changed files with 10536 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
# ingress.yaml
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: testpoint-ingress
namespace: testpoint
annotations:
cert-manager.io/cluster-issuer: "letsencrypt-prod"
nginx.ingress.kubernetes.io/proxy-body-size: "20m"
spec:
ingressClassName: nginx
tls:
- hosts:
- testpoint.uzbutterfly.com
secretName: testpoint-tls
rules:
- host: testpoint.uzbutterfly.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: testpoint-service
port:
number: 80