mirror of
https://github.com/RoboSats/robosats-deploy.git
synced 2025-08-13 13:27:16 +00:00
12 lines
304 B
YAML
12 lines
304 B
YAML
apiVersion: v1
|
|
kind: Service # Create service
|
|
metadata:
|
|
name: daphne # Sets the service name
|
|
labels:
|
|
app: daphne # Defines app to create service for
|
|
spec:
|
|
type: ClusterIP # Sets the service type
|
|
ports:
|
|
- port: 9000 # Sets the port to run the daphne application
|
|
selector:
|
|
app: daphne |