forked from devtron-labs/devtron
-
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: Kube capacity support (devtron-labs#1601)
* wip * wip * wip * updated argo cd version * updated k8s/application.go as per k8s library * updated imports for argo-workflows and argo-cd lib * cleared sessionManager implementations * handled changes in gitlab lib update * handled lib changes in k8sUtil.go * updated AppListingService.go and AppService.go * added argoproj/gitops-engine lib * updated CILogService.go & WorkflowDagExecutor.go * updated InstalledAppService.go & AppListingRestHandler.go * updated go version * fixed go version * updated argocd image * Added new argocd manifests * updated authenticator import * script-changes * fixed loginService binding * updated authenticator * updated installation script for initial argocd pwd * updated log for debugging * updated Dockerfile * updated Dockerfile * updated Dockerfile * removed googleapis/gnostic * resynced googleapis/gnostic * updated argo-cd/assets * updated vendor files and k8sCapacityService.go * updated deprecated apis - argo cd repository * updated spec * updated spec * wip * updated spec * updated k8sApplicationService.go * changes in spec * changes in spec * wip - completed node detail api * wip - update manifest * updated bean * updated orchestrator image * updated labels data in node listing api * update err handling for cluster detail * updated logs for debugigng * wip * fix bug - resource list addition panic * updated response for cluster listing api * updated group for manifest fetch/update request * hardcoded cluster list for testing * added log * updated node errors field in cluster listing api resp * updated node gvk for manifest fetch request * updated logs for debugging * updated missing field data - part 1 * updated missing field data - part 2 * wip * fixed taint and nodeError issue * updated vendor/argoproj/argo-cd/assets * updated condition filtering in node detail * update node error condition for testing * updated devtron image * updated cron service for getting cluster connection status * updated cluster name in connected cluster resp * updated cluster cron service status error * updated node error for testing * updated resource value string * fixed limits and requests logic * wip - updated allocatable field in node detail api * updated resource values * updated server version * updated resoource string * removed unneeded network policy * updated resp for sorting at FE * updated orchestrator image * updated rbac * updated argocd lib version to v2.4.0 * updated argo cd image in manifest * update manifest * fixed bug for cluster detail page and rbac * updated devtron image * updated logs for debugging * updated fix for non-default cluster unauthorized issue * added TODO * updated handling for clusters without metrics server * wip * changes for unavailable resource usage statistics and error handling * added argoUserService * wip * fixed wiring issues, updated argo api calls with new token * wip - token creation workaround * wip * fixed ea build issue * fixed token no extraction panic * updated devtron image * updated script no * updated app detail health status * updated devtron image * updated devtron image * review change * review change * updated devtron image * updated capability * updated image * updated code for cascade delete argo pipeline * updated authenticator import * merged argo-update * updated script no * restored argocd assets Co-authored-by: pawan-59 <[email protected]> Co-authored-by: nishant <[email protected]>
- Loading branch information
1 parent
3d69545
commit 6a8020e
Showing
54 changed files
with
7,999 additions
and
12 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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ALTER TABLE cluster | ||
DROP COLUMN error_in_connecting; |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ALTER TABLE cluster | ||
ADD COLUMN error_in_connecting TEXT; |
Oops, something went wrong.