Optidash
Learn how to use the Optidash module.
Deploy
Submit a support request by clicking the Support link in the left sidebar to have the Optidash module deployed.
Manage
Manage the Optidash module through the Git config.
tip
Check out the related Optidash reference to get started with customizing your Optidash module.
note
Submit a support request by clicking the Support link in the left sidebar if you need help managing this module.
Clear cache
Follow the steps below to clear the Optidash module for an environment in your project:
Console
- Go to the clear cache of the environment you want to clear the Optidash module for.
- Clear cached images through a particular URL.
API
Go to the API documentation.
In the API list, click on Proxy.
In the Proxy list, click on the following API endpoint:
POST /account/{accountId}/application/{applicationId}/environment/{environmentName}/proxy/{proxyName}/state
Build your API call by filling out the required parameters.
tip
The
accountId
,applicationId
, andenvironmentName
parameters can be obtained from the browser address bar when logged in to your CloudFlow organization. TheproxyName
is the directory name of the module that is in the associated Git config (typicallyoptidash
).
Delete
Follow the steps below to delete the Optidash module from your environment:
Go to the Git config of the environment you want to delete the Optidash module from.
In the top of the page, copy the URL next to Clone with HTTPS.
Open a terminal and change the current working directory to the location where you want the cloned environment repository.
Clone the environment repository to your local computer. Type
git clone
followed by the copied URL and then press Enter:git clone <copied_url>
In the root directory of the environment repository, delete the Optidash module directory (typically named
optidash
).note
Skip this step to disable the module instead of deleting it.
In the environment's
section.config.json
file, delete the module object from theproxychain
array, which will look like the following:section.config.json...
"proxychain": [
...
{
"name": "<module_directory_name>",
"image": "<module_image>"
},
...
],
...section.config.json...
"proxychain": [
...
{
"name": "optidash",
"image": "optidash:latest"
},
...
],
...Stage, commit, and push the changes to the environment's remote repository:
git add .
git commit -m "Delete the Optidash module"
git push