fix: update hipster deployment setup

This commit is contained in:
Jonas Juselius
2024-02-14 11:49:25 +01:00
parent 71f3d0f4c4
commit c084edf6cd
16 changed files with 63 additions and 42 deletions
+30
View File
@@ -0,0 +1,30 @@
#
# Create a queue binding for receiving events from RabbitMQ.
# Used by Hipster to get info about changes in job status from slurm.
#
apiVersion: dapr.io/v1alpha1
kind: Component
metadata:
name: slurm-events
spec:
type: bindings.rabbitmq
version: v1
metadata:
- name: hostname
value: prod-rabbitmq.rabbitmq.svc
- name: protocol
value: amqp
- name: username
value: user
- name: password
secretKeyRef:
name: prod-rabbitmq
key: rabbitmq-password
- name: queueName
value: prod-hipster-slurm-job-events
- name: durable
value: true
- name: contentType
value: "application/json"
scopes:
- hipster