Upload files to "loki-ingress-argocd-setup"

This commit is contained in:
2026-01-06 07:37:43 +00:00
parent ba2e8b7a6f
commit b9b481e442
4 changed files with 348 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
---
# NodePort Service для прямого доступа к Loki
apiVersion: v1
kind: Service
metadata:
name: loki-nodeport
namespace: loki
labels:
app.kubernetes.io/name: loki
spec:
type: NodePort
selector:
app.kubernetes.io/name: loki
ports:
- name: http
port: 3100
targetPort: http
nodePort: 31000 # Будет доступен на этом порту на всех нодах
protocol: TCP