You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have been playing to deploy it in the ephemeral environment (wip) and I suggest this ticket to read configurations provided by clowder operator.
When it is deployed with an openshift template using clowderapp resource, it injects into the pod a secret with several configurations; in this particular scenario, the redis configuration (host, port) are provided into a json file which is pointed out by ACG_CONFIG environment variable. Currently exists app-common-python to help to read this parameters.
at appservice/config.py it could be something like:
I have been playing to deploy it in the ephemeral environment (wip) and I suggest this ticket to read configurations provided by clowder operator.
When it is deployed with an openshift template using clowderapp resource, it injects into the pod a secret with several configurations; in this particular scenario, the redis configuration (host, port) are provided into a json file which is pointed out by ACG_CONFIG environment variable. Currently exists
app-common-python
to help to read this parameters.at
appservice/config.py
it could be something like:and use it at
appservice/multiplexor.py
by addding theapp-common-python
package:Finally at
appservice/Containerfile
I added the dependency.RUN pip3 install redis starlette httpx websockets uvicorn app-common-python
Additional Information:
The text was updated successfully, but these errors were encountered: