Reckless_Satoshi a069f98a1a init
2023-09-29 05:10:16 -07:00

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