forked from janus-idp/backstage-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(argocd): add argocd deployment lifecycle and summary component (j…
…anus-idp#1540) * add argocd deployment lifecycle and summary components * add unit test for argocd plugin * add documentation and change visibility of argocd plugin to public * update ReadMe to include dynamic plugin usage
- Loading branch information
1 parent
f79ad82
commit 4c7c533
Showing
51 changed files
with
4,449 additions
and
439 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,49 @@ | ||
export interface Config {} | ||
export interface Config { | ||
/** Optional configurations for the ArgoCD plugin */ | ||
argocd?: { | ||
/** | ||
* The base url of the ArgoCD instance. | ||
* @visibility frontend | ||
*/ | ||
baseUrl?: string; | ||
/** | ||
* Support for the ArgoCD beta feature "Applications in any namespace" | ||
* @visibility frontend | ||
*/ | ||
namespacedApps?: boolean; | ||
/** | ||
* The number of revisions to load per application in the history table. | ||
* @visibility frontend | ||
*/ | ||
revisionsToLoad?: number; | ||
/** | ||
* Polling interval timeout | ||
* @visibility frontend | ||
*/ | ||
refreshInterval: number; | ||
/** | ||
* The base url of the ArgoCD instance. | ||
* @visibility frontend | ||
*/ | ||
appLocatorMethods?: Array</** | ||
* @visibility secret | ||
*/ | ||
{ | ||
/** | ||
* The base url of the ArgoCD instance. | ||
* @visibility frontend | ||
*/ | ||
type: string; | ||
instances: Array<{ | ||
/** | ||
* @visibility frontend | ||
*/ | ||
name: string; | ||
/** | ||
* @visibility frontend | ||
*/ | ||
url: string; | ||
}>; | ||
}>; | ||
}; | ||
} |
Oops, something went wrong.