mirror of
https://github.com/thejimnicholson/uptime-kuma-k8s.git
synced 2025-12-06 03:30:44 +00:00
17 lines
303 B
YAML
17 lines
303 B
YAML
# https://kubernetes.io/docs/concepts/services-networking/service/
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: uptime-kuma-web
|
|
namespace: uptime-kuma
|
|
spec:
|
|
selector:
|
|
app: uptime-kuma
|
|
type: ClusterIP
|
|
ports:
|
|
- name: uptime-kuma-web
|
|
protocol: TCP
|
|
port: 80
|
|
targetPort: 3001
|
|
---
|