uptimeKuma/03-service.yaml
Guillaume B.B. Van Hemmen 4563ee027e #0000 - Set up Kubernetes resources for Uptime Kuma deployment
Added YAML manifests to create the namespace, PersistentVolumeClaim, Deployment, Service, and Ingress for the Uptime Kuma application. Included configurations for TLS support, liveness probe, and a restore pod template for data management. These resources aim to facilitate scalable and secure application deployment.
2025-01-20 18:44:35 +01:00

13 lines
191 B
YAML

apiVersion: v1
kind: Service
metadata:
namespace: uptime-kuma
name: app
spec:
ports:
- port: 3001
targetPort: 3001
name: app
selector:
name: app
type: ClusterIP