This repository has been archived by the owner on Oct 25, 2023. It is now read-only.
forked from raystack/dex
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Create & List DLQ job api (#70)
* feat: create DLQ job * feat: create DLQ job * Merge * feat: Create Dlq job api witht testing * feat: swagger * feat: add dlqJob name * fix: mapper * test: created testing * feat: list dlq Job * fix: response createdlqjob * feat: ListDlqJob api * feat(dlq): missing project in Create job api * feat: filter for listDLQ * test: add error testing for create dlq job * fix: lint error * feat(dlq): store dlq information in entropy labels * fix: lint warning * feat: should not create dlq job with empty image and prom host --------- Co-authored-by: Lifosmin Simon <[email protected]> Co-authored-by: Stewart Jingga <[email protected]>
- Loading branch information
1 parent
cf39840
commit cee9ad8
Showing
16 changed files
with
1,646 additions
and
60 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# dex | ||
|
||
Data Experience | ||
|
||
## Setting up GCloud Credentials | ||
1. login to cloud - `gcloud auth login` | ||
2. setup ADC - `gcloud auth application-default login` |
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
Submodule dex
deleted from
786037
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"dlq_jobs": [ | ||
{ | ||
"resource_id": "test-resource-id", | ||
"resource_type": "test-resource-type", | ||
"topic": "test-topic", | ||
"date": "2022-10-21", | ||
"name": "test1-firehose-test-topic-2022-10-21", | ||
"group": "test-group", | ||
"kube_cluster": "test-kube-cluster", | ||
"project": "test-project-1", | ||
"prometheus_host": "prom_host", | ||
"urn": "test-urn-1", | ||
"status": "STATUS_UNSPECIFIED", | ||
"created_at": "2022-12-10T00:00:00.000Z", | ||
"created_by": "[email protected]", | ||
"updated_at": "2023-12-10T02:00:00.000Z", | ||
"updated_by": "[email protected]" | ||
}, | ||
{ | ||
"resource_id": "test-resource-id", | ||
"resource_type": "test-resource-type", | ||
"topic": "test-topic", | ||
"date": "2022-10-21", | ||
"name": "test2-firehose-test-topic-2022-10-21", | ||
"group": "test-group", | ||
"kube_cluster": "test-kube-cluster", | ||
"project": "test-project-1", | ||
"prometheus_host": "prom_host2", | ||
"urn": "test-urn-2", | ||
"status": "STATUS_UNSPECIFIED", | ||
"created_at": "2012-10-10T04:00:00.000Z", | ||
"created_by": "[email protected]", | ||
"updated_at": "2013-02-12T02:04:00.000Z", | ||
"updated_by": "[email protected]" | ||
} | ||
] | ||
} |
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
Oops, something went wrong.