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

Add protocol field to app service spec #929

Merged
merged 2 commits into from
Oct 22, 2024
Merged
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
12 changes: 12 additions & 0 deletions specification/resources/apps/models/app_service_spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,18 @@ allOf:
health_check:
$ref: app_service_spec_health_check.yml

protocol:
type: string
description: |
The protocol which the service uses to serve traffic on the http_port.

- `HTTP`: The app is serving the HTTP protocol. Default.
- `HTTP2`: The app is serving the HTTP/2 protocol. Currently, this needs to be implemented in the service by serving HTTP/2 cleartext (h2c).
enum:
- HTTP
- HTTP2
example: HTTP

http_port:
type: integer
description: |-
Expand Down
Loading