first commit

This commit is contained in:
2025-10-08 11:38:29 +02:00
commit 9816c281ad
12 changed files with 220 additions and 0 deletions

18
rabbitmq/service.yaml Normal file
View File

@@ -0,0 +1,18 @@
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