19 lines
312 B
YAML
19 lines
312 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: rabbitmq
|
|
namespace: app-notifications
|
|
spec:
|
|
ports:
|
|
- port: 5672
|
|
targetPort: 5672
|
|
protocol: TCP
|
|
name: amqp
|
|
- port: 15672
|
|
targetPort: 15672
|
|
protocol: TCP
|
|
name: management
|
|
selector:
|
|
app: rabbitmq
|
|
type: ClusterIP
|