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 ...@@ -5,8 +5,8 @@ jinja2~=3.1.2
fastapi~=0.73.0 fastapi~=0.73.0
sqlalchemy~=1.3.24 sqlalchemy~=1.3.24
python-gitlab~=3.9.0 python-gitlab~=3.9.0
ruamel.yaml~=0.17.21 ruamel.yaml
PyMySQL==1.0.2 PyMySQL==1.0.2
mysqlclient==2.1.1 mysqlclient==2.1.1
pendulum==2.1.2 pendulum==2.1.2
pyyaml==6.0 pyyaml
\ No newline at end of file \ No newline at end of file
...@@ -28,10 +28,10 @@ deployment: ...@@ -28,10 +28,10 @@ deployment:
resources: resources:
requests: requests:
memory: <{ request_memory | default("250Mi") }> memory: <{ request_memory | default("250Mi") }>
cpu: <{ request_cpu | default("250Mi") }> cpu: <{ request_cpu | default("250m") }>
limits: limits:
memory: <{ limit_memory | default("750Mi") }> memory: <{ limit_memory | default("500Mi") }>
cpu: <{ limit_cpu | default("500Mi") }> cpu: <{ limit_cpu | default("500m") }>
livenessProbe: livenessProbe:
enabled: <{ enable_liveness | default(False)}> enabled: <{ enable_liveness | default(False)}>
path: <{ liveness_api }> path: <{ liveness_api }>
...@@ -49,7 +49,7 @@ deployment: ...@@ -49,7 +49,7 @@ deployment:
key: MONGO_URI key: MONGO_URI
{% for k, v in variables.items() %} {% for k, v in variables.items() %}
{% if k and v %} {% if k and v %}
- name: '<{ k }>', - name: '<{ k }>'
value: '<{ v }>' value: '<{ v }>'
{% endif %} {% endif %}
{% endfor %} {% 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