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
The installation script in the install_extension() function copies the extension JS code to /tmp/extensions/resources directory.
This, according to the docs is wrong. The folder should be /tmp/extensions, since this is the folder, which argocd-server Deployment is searching for extensions.
Additionally, the installation script should check that the extension has the expected format of the JS script, as it says in the docs:
Extensions should be delivered as a javascript file in the argocd-server Pods that are placed in the /tmp/extensions directory and starts with extension prefix ( matches to ^extension(.*)\.js$ regex )
The text was updated successfully, but these errors were encountered:
Description
The installation script in the
install_extension()
function copies the extension JS code to/tmp/extensions/resources
directory.This, according to the docs is wrong. The folder should be
/tmp/extensions
, since this is the folder, whichargocd-server
Deployment is searching for extensions.Additionally, the installation script should check that the extension has the expected format of the JS script, as it says in the docs:
The text was updated successfully, but these errors were encountered: