Skip to content

Commit d93908a

Browse files
authored
feat(ray): add protobuf for model and ray (#581)
Because - We need to support Ray integration for our model service - Ray uses specific protobuf definitions that need to be incorporated - Some Ray protobuf files don't follow our standard naming conventions This commit - Adds protobuf definitions for Ray model service - Configures `buf.yaml` to ignore Ray-specific protobuf files - Enables comment-based lint ignores to handle Ray's non-standard naming conventions
1 parent 69fe1cd commit d93908a

File tree

5 files changed

+578
-157
lines changed

5 files changed

+578
-157
lines changed

buf.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,11 @@ lint:
1616
- PACKAGE_NO_IMPORT_CYCLE
1717
except:
1818
- FIELD_NOT_REQUIRED
19+
ignore:
20+
- model/model/v1alpha/model_ray_serve.proto # protobuf file copied from ray repo
1921
enum_zero_value_suffix: _UNSPECIFIED
2022
service_suffix: Service
21-
disallow_comment_ignores: true
23+
disallow_comment_ignores: false
2224
breaking:
2325
use:
2426
- FILE

0 commit comments

Comments
 (0)