- Add monitoring page with Grafana-style UI and real-time charts - Implement Prometheus metrics API endpoint with comprehensive queries - Add Chart.js for visualizing cluster metrics - Include Overview, Resources, Kubernetes, and Network sections - Support both production (Prometheus) and development (mock) data - Add PROMETHEUS_URL environment variable to deployment
20 lines
362 B
YAML
20 lines
362 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
namespace: portfolio
|
|
|
|
resources:
|
|
- ../../base
|
|
- resourcequota.yaml
|
|
|
|
commonLabels:
|
|
environment: production
|
|
|
|
# 이미지 태그 설정
|
|
images:
|
|
- name: ghcr.io/mayne0213/portfolio
|
|
newTag: main-sha-a9ded587c52ffcd723797ef76cfbfde8c3641e0c
|
|
|
|
patchesStrategicMerge:
|
|
- deployment-patch.yaml
|