Compare commits

..

1 Commits

Author SHA1 Message Date
Gitea Actions Bot
d1cee2db49 Auto-update README with current k8s applications
Some checks failed
Terraform / Terraform (pull_request) Failing after 3s
Generated by CI/CD workflow on 2026-04-06 11:02:27

This PR updates the README.md file with the current list of applications found in the k8s/ directory structure.
2026-04-06 11:02:27 +00:00
5 changed files with 4 additions and 45 deletions

View File

@@ -8,8 +8,6 @@ resources:
- ./telemt-daemonset.yaml
- ./external-secrets.yaml
- ./telemt-external-secrets.yaml
- ./telemt-service.yaml
- ./telemt-servicemonitor.yaml
- ./service.yaml
- ./secret-reader.yaml
# - ./storage.yaml

View File

@@ -55,9 +55,10 @@ spec:
echo "ERROR: node ${NODE_NAME} has no mtproxy label"
exit 1
fi
# Build ee-prefixed secret for secure mode
EE_SECRET="ee${SECRET}"
LINK="tg://proxy?server=${SERVER}&port=${TELEMT_PORT}&secret=${EE_SECRET}"
# Build dd-prefixed secret for TLS mode: dd + secret + hex(tls_domain)
# "ya.ru" = 79612e7275
DD_SECRET="dd${SECRET}79612e7275"
LINK="tg://proxy?server=${SERVER}&port=${TELEMT_PORT}&secret=${DD_SECRET}"
echo "Registering telemt: ${SERVER} -> ${LINK}"
if kubectl get secret telemt-links -n "${NAMESPACE}" &>/dev/null; then
kubectl patch secret telemt-links -n "${NAMESPACE}" \

View File

@@ -29,8 +29,6 @@ spec:
[server]
port = 30444
metrics_port = 9090
metrics_whitelist = ["0.0.0.0/0"]
[server.api]
enabled = true

View File

@@ -1,17 +0,0 @@
---
apiVersion: v1
kind: Service
metadata:
name: telemt-metrics
labels:
app: telemt
spec:
type: ClusterIP
clusterIP: None
selector:
app: telemt
ports:
- port: 9090
targetPort: 9090
protocol: TCP
name: metrics

View File

@@ -1,21 +0,0 @@
---
apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
metadata:
name: telemt-metrics
labels:
app: telemt
release: prometheus
spec:
selector:
matchLabels:
app: telemt
endpoints:
- port: metrics
path: /metrics
interval: 30s
scrapeTimeout: 10s
honorLabels: true
namespaceSelector:
matchNames:
- mtproxy