feat: initial GitOps infrastructure
ArgoCD app definitions, Kustomize manifests for health-app, cert-manager ClusterIssuer, and AppProject configuration. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
24
environments/health-app/base/ingress.yaml
Normal file
24
environments/health-app/base/ingress.yaml
Normal file
@@ -0,0 +1,24 @@
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: health-app
|
||||
annotations:
|
||||
cert-manager.io/cluster-issuer: infinicaretech-ca-issuer
|
||||
nginx.ingress.kubernetes.io/ssl-redirect: "true"
|
||||
spec:
|
||||
ingressClassName: nginx
|
||||
tls:
|
||||
- hosts:
|
||||
- health.infinicaretech.local
|
||||
secretName: health-app-tls
|
||||
rules:
|
||||
- host: health.infinicaretech.local
|
||||
http:
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: health-app
|
||||
port:
|
||||
name: http
|
||||
Reference in New Issue
Block a user