add: HAR traces

This commit is contained in:
“Naeel”
2026-06-30 15:46:41 +04:00
parent 1a52506fb1
commit 250a8a6be2
940 changed files with 14409 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: cloud-dashboard
namespace: terra
spec:
replicas: 1
selector:
matchLabels:
app: cloud-dashboard
template:
metadata:
labels:
app: cloud-dashboard
spec:
containers:
- name: cloud-dashboard
image: naeel/cloud-dashboard:v1
imagePullPolicy: Always
ports:
- containerPort: 8080
resources:
requests:
memory: "64Mi"
cpu: "50m"
limits:
memory: "128Mi"
cpu: "200m"
+20
View File
@@ -0,0 +1,20 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: dashboard-ingress
namespace: terra
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /$2
spec:
ingressClassName: nginx
rules:
- host: terra.k8c.ru
http:
paths:
- path: /dashboard(/|$)(.*)
pathType: ImplementationSpecific
backend:
service:
name: cloud-dashboard
port:
number: 80
+11
View File
@@ -0,0 +1,11 @@
apiVersion: v1
kind: Service
metadata:
name: cloud-dashboard
namespace: terra
spec:
selector:
app: cloud-dashboard
ports:
- port: 80
targetPort: 8080