Initial commit: Consolidated DevOps scripts and K8s manifests

This commit is contained in:
codex
2026-06-05 07:00:43 +00:00
commit 08fa407f57
16 changed files with 922 additions and 0 deletions
+43
View File
@@ -0,0 +1,43 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
annotations:
kubernetes.io/ingress.class: traefik
name: makeanyplace-web-ingress
namespace: default
spec:
rules:
- host: makeanyplace.com
http:
paths:
- backend:
service:
name: makeanyplace-api
port:
number: 8000
path: /api
pathType: Prefix
- backend:
service:
name: makeanyplace-web-svc
port:
number: 80
path: /
pathType: Prefix
- host: www.makeanyplace.com
http:
paths:
- backend:
service:
name: makeanyplace-api
port:
number: 8000
path: /api
pathType: Prefix
- backend:
service:
name: makeanyplace-web-svc
port:
number: 80
path: /
pathType: Prefix