Skip to content

Commit

Permalink
Move the repository into the correct child (#510)
Browse files Browse the repository at this point in the history
* Move the repository into the correct child

* Fixing secret rabbitMQ
  • Loading branch information
ausias-armesto authored May 3, 2024
1 parent 91307e1 commit 59c6905
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 12 deletions.
19 changes: 16 additions & 3 deletions helm/ctdapp/templates/secret-rabbitmq.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,22 @@
---
apiVersion: v1
kind: Secret
metadata:
annotations:
argocd.argoproj.io/sync-wave: "1"
replicator.v1.mittwald.de/replicate-to: rabbitmq
name: rabbitmq-ctdapp
namespace: ctdapp
data:
CELERY_BROKER_URL: {{ .Values.ctdapp.rabbitmq.celeryBrokerUrl | b64enc }}
RABBITMQ_HOST: {{ .Values.ctdapp.rabbitmq.host | b64enc }}
RABBITMQ_PASSWORD: {{ .Values.ctdapp.rabbitmq.password | b64enc }}
RABBITMQ_USERNAME: {{ .Values.ctdapp.rabbitmq.username | b64enc }}
RABBITMQ_VIRTUALHOST: {{ .Values.ctdapp.rabbitmq.virtualhost | b64enc }}
password: {{ .Values.ctdapp.rabbitmq.password | b64enc }}
username: {{ .Values.ctdapp.rabbitmq.username | b64enc }}
---
apiVersion: v1
kind: Secret
metadata:
anamespace: rabbitmq
name: rabbitmq-ctdapp
data:
CELERY_BROKER_URL: {{ .Values.ctdapp.rabbitmq.celeryBrokerUrl | b64enc }}
Expand Down
15 changes: 6 additions & 9 deletions helm/ctdapp/values.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
environmentName: ""
ctdapp:
core:
repository: europe-west3-docker.pkg.dev/hoprassociation/docker-images/cover-traffic
pullPolicy: Always
tag: f65697a
postman:
repository: europe-west3-docker.pkg.dev/hoprassociation/docker-images/cover-traffic
pullPolicy: Always
tag: f65697a

nameOverride: ""
fullnameOverride: ""
Expand All @@ -33,6 +25,9 @@ ctdapp:


core:
repository: europe-west3-docker.pkg.dev/hoprassociation/docker-images/cover-traffic
pullPolicy: Always
tag: ""
replicas: 1
extraEnvVars: {}
resources:
Expand All @@ -42,8 +37,10 @@ ctdapp:
requests:
cpu: 250m
memory: 256Mi

postman:
repository: europe-west3-docker.pkg.dev/hoprassociation/docker-images/cover-traffic
pullPolicy: Always
tag: ""
replicas: 1
extraEnvVars: {}
resources:
Expand Down

0 comments on commit 59c6905

Please sign in to comment.