mirror of
https://github.com/SamyRai/turash.git
synced 2025-12-26 23:01:33 +00:00
Some checks failed
CI/CD Pipeline / backend-lint (push) Failing after 1m18s
CI/CD Pipeline / frontend-lint (push) Failing after 1m22s
CI/CD Pipeline / e2e-test (push) Has been skipped
CI/CD Pipeline / frontend-build (push) Has been skipped
CI/CD Pipeline / backend-build (push) Has been skipped
- Add namespace.yaml for turash namespace - Add frontend manifests (deployment, service, HPA, ingress) - Add kustomization.yaml for Argo CD kustomize support - Update frontend Argo CD application with proper annotations - Configure ingress with domain turash.bk.glpx.pro for Argo CD link display - Use registry.bk.glpx.pro for container images
32 lines
778 B
YAML
32 lines
778 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: turash-frontend-ingress
|
|
namespace: turash
|
|
labels:
|
|
app: turash-frontend
|
|
component: ingress
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
|
traefik.ingress.kubernetes.io/redirect-entrypoint: websecure
|
|
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
|
traefik.ingress.kubernetes.io/router.middlewares: default-compress@kubernetescrd
|
|
spec:
|
|
ingressClassName: traefik
|
|
rules:
|
|
- host: turash.bk.glpx.pro
|
|
http:
|
|
paths:
|
|
- backend:
|
|
service:
|
|
name: turash-frontend
|
|
port:
|
|
number: 80
|
|
path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- hosts:
|
|
- turash.bk.glpx.pro
|
|
secretName: turash-frontend-tls
|
|
|