mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 15:04:31 +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).
26 lines
706 B
YAML
26 lines
706 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ .Values.kong.configMapName }}
|
|
namespace: {{ .Values.kong.namespace }}
|
|
data:
|
|
kong.yml: |
|
|
_format_version: "3.0"
|
|
_transform: true
|
|
services:
|
|
- name: kubeconfig
|
|
url: http://prole-svc.prole-db.svc.cluster.local:8080
|
|
routes:
|
|
- name: kubeconfig
|
|
paths:
|
|
- /k3s/kube_config.sh
|
|
- name: svc-check
|
|
url: http://svc-check-web.{{ .Values.namespace | default .Release.Namespace }}.svc.cluster.local:80
|
|
routes:
|
|
- name: svc-check-root
|
|
hosts:
|
|
- {{ .Values.svcCheck.domain }}
|
|
paths:
|
|
- /
|
|
strip_path: false
|