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.
13 lines
191 B
YAML
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
|