Compare commits

..

1 Commits

Author SHA1 Message Date
Gitea Actions Bot
4fb98accc6 Auto-update README with current k8s applications
All checks were successful
Terraform / Terraform (pull_request) Successful in 38s
Generated by CI/CD workflow on 2025-11-24 16:43:57

This PR updates the README.md file with the current list of applications found in the k8s/ directory structure.
2025-11-24 16:43:57 +00:00
4 changed files with 19 additions and 41 deletions

View File

@@ -2,7 +2,7 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: user-ui
name: remnawave-tls-ingress
annotations:
ingressClassName: traefik
cert-manager.io/cluster-issuer: letsencrypt
@@ -31,7 +31,7 @@ spec:
port:
number: 3010
tls:
- secretName: remnawave-user-ui-tls
- secretName: remnawave-tls
hosts:
- sub.hexor.cy
- sub.hexor.ru

View File

@@ -8,5 +8,4 @@ resources:
- ./subscription-page-configmap.yaml
- ./subscription-page-deployment.yaml
- ./servicemonitor.yaml
- ./user-ui-ingress.yaml
- ./panel-ingress.yaml
- ./ingress.yaml

View File

@@ -1,37 +0,0 @@
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: panel-ui
annotations:
ingressClassName: traefik
cert-manager.io/cluster-issuer: letsencrypt
traefik.ingress.kubernetes.io/router.middlewares: kube-system-https-redirect@kubernetescrd
acme.cert-manager.io/http01-edit-in-place: "true"
spec:
rules:
- host: rw.hexor.cy
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: remnawave
port:
number: 3000
- host: rw.hexor.ru
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: remnawave
port:
number: 3000
tls:
- secretName: remnawave-panel-tls
hosts:
- rw.hexor.cy
- rw.hexor.ru

View File

@@ -28,6 +28,22 @@ spec:
- name: http
containerPort: 3010
protocol: TCP
livenessProbe:
httpGet:
path: /
port: 3010
initialDelaySeconds: 30
periodSeconds: 30
timeoutSeconds: 5
failureThreshold: 3
readinessProbe:
httpGet:
path: /
port: 3010
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 3
failureThreshold: 3
resources:
requests:
memory: "64Mi"