Skip to content

Commit

Permalink
add healthcheck endpoints and another host
Browse files Browse the repository at this point in the history
  • Loading branch information
nam20485 committed Feb 25, 2024
1 parent f206bee commit 97837c7
Showing 1 changed file with 30 additions and 8 deletions.
38 changes: 30 additions & 8 deletions swagger/odbdesign-server-0.9-swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ info:
servers:
- url: http://default-ingress-1165108808.us-west-2.elb.amazonaws.com
- url: http://localhost:8888
- url: http://precision5820:8081
tags:
- name: "file upload"
- name: "filemodel"
#- name: "hello world"
#- name: "health check"
- name: "health check"
- name: "steps"
- name: "layers"
- name: "symbols"
Expand Down Expand Up @@ -564,15 +565,36 @@ paths:
description: ""
security:
- BasicAuth: []
/healthz/live:
get:
tags: ["health check"]
parameters: []
responses:
"200":
description: ""
/healthz/started:
get:
tags: ["health check"]
parameters: []
responses:
"200":
description: ""
/healthz/ready:
get:
tags: ["health check"]
parameters: []
responses:
"200":
description: ""
components:
securitySchemes:
BasicAuth:
type: http
scheme: basic
schemas:
odbdesign-server-schema:
type: object
properties:
id:
type: integer
format: int64
# schemas:
# odbdesign-server-schema:
# type: object
# properties:
# id:
# type: integer
# format: int64

0 comments on commit 97837c7

Please sign in to comment.