Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: wizard #3527

Merged
merged 21 commits into from
Jan 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
40e6e84
feat(frontend): add wizard layout and architecture (#3521)
jorgeepc Jan 12, 2024
0f05345
Feat wizard structure (#3523)
xoscar Jan 12, 2024
da73231
Feat wizard tracing backend (#3525)
xoscar Jan 15, 2024
67422d9
Merge branch 'main' into feat-wizard
xoscar Jan 16, 2024
d04ffd1
feat(frontend): add wizard ui improvements (#3530)
jorgeepc Jan 16, 2024
65528ca
feat: wizard backend (#3531)
xoscar Jan 16, 2024
de20c19
feat(frontend): Wizard - Create Test Flow (#3532)
xoscar Jan 16, 2024
462d33e
fix(backend): wizard crud (#3535)
xoscar Jan 17, 2024
4dad6c7
feat(frontend): update wizard steps state (#3537)
jorgeepc Jan 18, 2024
0136a6f
Merge branch 'main' into feat-wizard
xoscar Jan 18, 2024
494232e
Merge branch 'feat-wizard' of github.com:kubeshop/tracetest into feat…
xoscar Jan 18, 2024
bf61521
Merge branch 'main' into feat-wizard
xoscar Jan 18, 2024
c108269
feat(frontend): Wizard - OTLP Test connection (#3540)
xoscar Jan 18, 2024
27594c1
feat(frontend): add wizard analytics (#3543)
jorgeepc Jan 18, 2024
1942af6
Merge branch 'main' into feat-wizard
xoscar Jan 19, 2024
2cdc7f4
feat(frontend): Wizard - Completion Steps Wire-Up (#3546)
xoscar Jan 19, 2024
30e63f2
fixing wrong loading state
xoscar Jan 19, 2024
0d9717b
chore: Updating default wizard steps (#3548)
xoscar Jan 22, 2024
247eb4a
fix(frontend): fix next step for tracing backend (#3547)
jorgeepc Jan 22, 2024
14398ea
Merge branch 'main' into feat-wizard
Jan 22, 2024
6e1415c
fix(frontend): fix selected tracing backend (#3551)
jorgeepc Jan 22, 2024
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
42 changes: 42 additions & 0 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1380,3 +1380,45 @@ paths:
description: "Linter not found"
500:
description: "problem deleting an Linter"
/wizard:
get:
tags:
- api
summary: "Get a specific wizard"
description: "Get the configured Wizard, showing the state of each step."
operationId: getWizard
responses:
200:
description: successful operation
content:
application/json:
schema:
$ref: "./wizards.yaml#/components/schemas/Wizard"
404:
description: "Wizard not found"
500:
description: "problem getting a Wizard"
put:
tags:
- api
summary: "Update a Wizard"
description: "Update a Wizard used on Tracetest"
operationId: updateWizard
requestBody:
content:
application/json:
schema:
$ref: "./wizards.yaml#/components/schemas/Wizard"
responses:
200:
description: successful operation
content:
application/json:
schema:
$ref: "./wizards.yaml#/components/schemas/Wizard"
400:
description: "invalid Wizard, some data was sent in incorrect format."
404:
description: "Wizard not found"
500:
description: "problem updating an Wizard"
22 changes: 22 additions & 0 deletions api/wizards.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
openapi: 3.0.0
components:
schemas:
Wizard:
type: object
properties:
steps:
type: array
items:
$ref: "#/components/schemas/WizardStep"
WizardStep:
type: object
properties:
id:
type: string
enum: ["tracing_backend", "create_test", "agent"]
state:
type: string
enum: [inProgress, completed, pending]
completedAt:
type: string
format: date-time
208 changes: 208 additions & 0 deletions cli/openapi/api_api.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading