Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions backend/plugins/argocd/tasks/sync_operation_collector.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ var CollectSyncOperationsMeta = plugin.SubTaskMeta{
EntryPoint: CollectSyncOperations,
EnabledByDefault: true,
Description: "Collect sync operations (deployment history) from ArgoCD API",
DomainTypes: []string{plugin.DOMAIN_TYPE_CICD},
DependencyTables: []string{models.ArgocdApplication{}.TableName()},
}

Expand Down
1 change: 1 addition & 0 deletions backend/plugins/argocd/tasks/sync_operation_convertor.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ var ConvertSyncOperationsMeta = plugin.SubTaskMeta{
EntryPoint: ConvertSyncOperations,
EnabledByDefault: true,
Description: "Convert sync operations to domain layer deployments",
DomainTypes: []string{plugin.DOMAIN_TYPE_CICD},
DependencyTables: []string{models.ArgocdSyncOperation{}.TableName()},
ProductTables: []string{"cicd_deployments", "cicd_deployment_commits"},
}
Expand Down
1 change: 1 addition & 0 deletions backend/plugins/argocd/tasks/sync_operation_extractor.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ var ExtractSyncOperationsMeta = plugin.SubTaskMeta{
EntryPoint: ExtractSyncOperations,
EnabledByDefault: true,
Description: "Extract sync operations from raw data",
DomainTypes: []string{plugin.DOMAIN_TYPE_CICD},
DependencyTables: []string{RAW_SYNC_OPERATION_TABLE},
ProductTables: []string{models.ArgocdSyncOperation{}.TableName()},
}
Expand Down
Loading