mirror of
https://github.com/dredx/prole.git
synced 2026-09-23 12:03:59 +00:00
- Tighten Cluster Environment screen layout; switch Service/Prod to kubectx context selection; keep namespace and key controls on one line; ensure Repair button remains reachable. - Add UI layout regression test to render with large mock data and assert key widgets remain visible and console is scrollable. - Make kubeconfig generation deterministic under tests by avoiding overwriting cert-based kubeconfigs; write token sidecar kubeconfig when needed. - Update common-services init scripts and add k3s/Helm deployment bits (svc-check, Kong/CertMgr tasks).
27 lines
787 B
YAML
27 lines
787 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: svc-prole-ingress
|
|
namespace: {{ .Values.kong.namespace }}
|
|
annotations:
|
|
kubernetes.io/ingress.class: {{ .Values.ingress.className }}
|
|
cert-manager.io/cluster-issuer: {{ .Values.ingress.clusterIssuer }}
|
|
traefik.ingress.kubernetes.io/router.priority: "10"
|
|
spec:
|
|
ingressClassName: {{ .Values.ingress.className }}
|
|
tls:
|
|
- hosts:
|
|
- {{ .Values.svcCheck.domain }}
|
|
secretName: {{ .Values.ingress.tlsSecretName }}
|
|
rules:
|
|
- host: {{ .Values.svcCheck.domain }}
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: {{ .Values.kong.proxyServiceName }}
|
|
port:
|
|
number: 8000
|