Skip to content
Snippets Groups Projects
Commit fa350b5b authored by Oleksandr Kosse (EPAM)'s avatar Oleksandr Kosse (EPAM)
Browse files

Merge branch 'GONRG-10006-Add_readiness_endpoint' into 'master'

Gonrg 10006 add readiness endpoint

See merge request !494
parents 8dc6f0f3 96b3762a
No related branches found
No related tags found
1 merge request!494Gonrg 10006 add readiness endpoint
Pipeline #274999 passed
......@@ -22,7 +22,7 @@ The following software have components provided under the terms of this license:
- cryptography (from https://github.com/pyca/cryptography)
- elasticsearch (from https://github.com/elastic/elasticsearch, https://github.com/elastic/elasticsearch-py, https://repo1.maven.org/maven2/org/elasticsearch/elasticsearch)
- elasticsearch-dsl (from https://github.com/elasticsearch/elasticsearch-dsl-py)
- fastapi (from https://pypi.org/project/fastapi/0.111.0/, https://pypi.org/project/fastapi/0.86.0/)
- fastapi (from https://pypi.org/project/fastapi/0.111.1/, https://pypi.org/project/fastapi/0.86.0/)
- google-api-core (from https://github.com/googleapis/python-api-core)
- google-auth (from https://github.com/GoogleCloudPlatform/google-auth-library-python, https://github.com/googleapis/google-auth-library-python)
- google-cloud-core (from https://github.com/googleapis/python-cloud-core)
......@@ -76,6 +76,7 @@ The following software have components provided under the terms of this license:
- packaging (from https://pypi.org/project/packaging/22.0/, https://pypi.org/project/packaging/24.1/)
- protobuf (from https://developers.google.com/protocol-buffers/)
- psutil (from https://github.com/giampaolo/psutil)
- pyasn1-modules (from https://github.com/etingof/pyasn1-modules, https://github.com/pyasn1/pyasn1-modules)
- pycparser (from https://github.com/eliben/pycparser)
- pyrsistent (from https://github.com/tobgu/pyrsistent/)
- python-dateutil (from https://github.com/dateutil/dateutil)
......@@ -112,8 +113,8 @@ The following software have components provided under the terms of this license:
- cffi
- charset-normalizer (from https://github.com/Ousret/charset_normalizer)
- coverage (from https://github.com/nedbat/coveragepy)
- exceptiongroup (from https://pypi.org/project/exceptiongroup/1.0.1/, https://pypi.org/project/exceptiongroup/1.2.1/)
- fastapi (from https://pypi.org/project/fastapi/0.111.0/, https://pypi.org/project/fastapi/0.86.0/)
- exceptiongroup (from https://pypi.org/project/exceptiongroup/1.0.1/, https://pypi.org/project/exceptiongroup/1.2.2/)
- fastapi (from https://pypi.org/project/fastapi/0.111.1/, https://pypi.org/project/fastapi/0.86.0/)
- h11
- iniconfig (from http://github.com/RonnyPfannschmidt/iniconfig, https://pypi.org/project/iniconfig/2.0.0/)
- jmespath (from https://github.com/jmespath/jmespath.py)
......@@ -125,12 +126,12 @@ The following software have components provided under the terms of this license:
- munch (from http://github.com/Infinidat/munch, https://github.com/Infinidat/munch)
- pluggy
- protobuf (from https://developers.google.com/protocol-buffers/)
- pydantic (from https://github.com/samuelcolvin/pydantic, https://pypi.org/project/pydantic/2.7.3/)
- pydantic (from https://github.com/samuelcolvin/pydantic, https://pypi.org/project/pydantic/2.8.2/)
- pydantic-core (from https://github.com/pydantic/pydantic-core)
- pyrsistent (from https://github.com/tobgu/pyrsistent/)
- pytest (from http://pytest.org, https://docs.pytest.org/en/latest/, https://pypi.org/project/pytest/8.2.2/)
- pytest-cov (from https://github.com/pytest-dev/pytest-cov)
- pytest-mock (from https://github.com/pytest-dev/pytest-mock/)
- pytest-mock (from https://github.com/pytest-dev/pytest-mock/, https://pypi.org/project/pytest-mock/3.14.0/)
- pytest-order (from https://github.com/pytest-dev/pytest-order)
- rich (from https://github.com/Textualize/rich, https://github.com/willmcgugan/rich)
- ruamel.yaml (from https://pypi.org/project/ruamel.yaml/0.18.3/, https://pypi.org/project/ruamel.yaml/0.18.6/, https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree)
......@@ -165,7 +166,7 @@ Python-2.0
The following software have components provided under the terms of this license:
- cryptography (from https://github.com/pyca/cryptography)
- exceptiongroup (from https://pypi.org/project/exceptiongroup/1.0.1/, https://pypi.org/project/exceptiongroup/1.2.1/)
- exceptiongroup (from https://pypi.org/project/exceptiongroup/1.0.1/, https://pypi.org/project/exceptiongroup/1.2.2/)
- portalocker (from https://github.com/WoLpH/portalocker)
- typing-extensions (from https://pypi.org/project/typing-extensions/4.2.0/, https://pypi.org/project/typing-extensions/4.4.0/)
......
......@@ -42,10 +42,16 @@ spec:
livenessProbe:
failureThreshold: 3
httpGet:
path: api/policy/v1/health
path: /api/policy/v1/health
port: 8080
initialDelaySeconds: 120
periodSeconds: 10
initialDelaySeconds: 190
periodSeconds: 60
readinessProbe:
failureThreshold: 3
httpGet:
path: /api/policy/v1/ready
port: 8080
periodSeconds: 60
resources:
requests:
cpu: "{{ .Values.data.requestsCpu }}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment