copilot ingress

This commit is contained in:
2026-01-02 15:36:40 -07:00
parent e5d7725ced
commit 3b8e6410ef
3 changed files with 36 additions and 14 deletions

View File

@@ -0,0 +1,33 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: copilot-ingress
namespace: projects
annotations:
cert-manager.io/cluster-issuer: cloudflare-issuer
spec:
ingressClassName: nginx
tls:
- hosts:
- copilot.alexmickelson.guru
secretName: copilot-tls-cert
rules:
- host: copilot.alexmickelson.guru
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: copilot-service
port:
number: 4444
---
apiVersion: v1
kind: Service
metadata:
name: copilot-service
namespace: projects
spec:
type: ExternalName
externalName: 100.122.128.107