Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rabbitmq rosetta fix #565

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions helm/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
secrets
site
servicex/charts
servicex/local-dev-values.yaml

__pycache__/
*.py[cod]
Expand Down
58 changes: 0 additions & 58 deletions helm/servicex/local-dev-values.yaml

This file was deleted.

6 changes: 3 additions & 3 deletions helm/servicex/requirements.lock
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
dependencies:
- name: rabbitmq
repository: https://charts.bitnami.com/bitnami/
version: 11.4.0
version: 11.11.1
- name: minio
repository: https://charts.bitnami.com/bitnami/
version: 11.10.26
- name: postgresql
repository: https://charts.bitnami.com/bitnami/
version: 11.6.26
digest: sha256:1538e3fd27ac2dcfe5df320de851a8c501f8b5cc4056b13b208a92d5e70340c5
generated: "2023-01-25T16:29:05.999958-06:00"
digest: sha256:e639f85bf077d98b5a1552bbcca59399c0ec37bf3a93036a318e4142e64d7c66
generated: "2023-03-27T16:20:44.61178-05:00"
2 changes: 1 addition & 1 deletion helm/servicex/requirements.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: rabbitmq
version: 11.4.*
version: 11.11.*
repository: https://charts.bitnami.com/bitnami/
- name: minio
version: 11.10.*
Expand Down
2 changes: 1 addition & 1 deletion helm/servicex/templates/app/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ data:

TRANSFORMER_MANAGER_ENABLED = True

TRANSFORMER_CACHE_PREFIX = {{ .Values.transformer.cachePrefix }}
TRANSFORMER_CACHE_PREFIX = "{{ .Values.transformer.cachePrefix }}"
TRANSFORMER_AUTOSCALE_ENABLED = {{- ternary "True" "False" .Values.transformer.autoscaler.enabled }}
TRANSFORMER_CPU_LIMIT = {{ .Values.transformer.cpuLimit }}
TRANSFORMER_CPU_SCALE_THRESHOLD = {{ .Values.transformer.autoscaler.cpuScaleThreshold }}
Expand Down