Commit 3080a947 authored by harshavardhan.c's avatar harshavardhan.c

fix: Helm Automation script changes.

parent f870f2c7
......@@ -5,8 +5,8 @@ jinja2~=3.1.2
fastapi~=0.73.0
sqlalchemy~=1.3.24
python-gitlab~=3.9.0
ruamel.yaml~=0.17.21
ruamel.yaml
PyMySQL==1.0.2
mysqlclient==2.1.1
pendulum==2.1.2
pyyaml==6.0
\ No newline at end of file
pyyaml
\ No newline at end of file
......@@ -28,10 +28,10 @@ deployment:
resources:
requests:
memory: <{ request_memory | default("250Mi") }>
cpu: <{ request_cpu | default("250Mi") }>
cpu: <{ request_cpu | default("250m") }>
limits:
memory: <{ limit_memory | default("750Mi") }>
cpu: <{ limit_cpu | default("500Mi") }>
memory: <{ limit_memory | default("500Mi") }>
cpu: <{ limit_cpu | default("500m") }>
livenessProbe:
enabled: <{ enable_liveness | default(False)}>
path: <{ liveness_api }>
......@@ -49,7 +49,7 @@ deployment:
key: MONGO_URI
{% for k, v in variables.items() %}
{% if k and v %}
- name: '<{ k }>',
- name: '<{ k }>'
value: '<{ v }>'
{% endif %}
{% endfor %}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment