API definitions for the Istio project
api
Go to file
Zhonghu Xu 8af5bcd0f1
Add query param based hash (#1272)
2020-02-06 09:06:18 -08:00
.github/ISSUE_TEMPLATE
annotation
authentication/v1alpha1
common Update common (#1265) 2020-01-31 10:40:00 -08:00
common-protos
dictionaries
envoy/config/filter
kubernetes Add query param based hash (#1272) 2020-02-06 09:06:18 -08:00
licenses
mcp
mesh/v1alpha1 Update common (#1265) 2020-01-31 10:40:00 -08:00
mixer Update common (#1265) 2020-01-31 10:40:00 -08:00
networking Add query param based hash (#1272) 2020-02-06 09:06:18 -08:00
operator Add json codegen for Operator (#1263) 2020-02-03 09:54:14 -08:00
policy/v1beta1 Update common (#1265) 2020-01-31 10:40:00 -08:00
python Add query param based hash (#1272) 2020-02-06 09:06:18 -08:00
rbac/v1alpha1
releaselocks
scripts
security/v1beta1 Update common (#1265) 2020-01-31 10:40:00 -08:00
type/v1beta1
.gitattributes
.gitignore
BUGS-AND-FEATURE-REQUESTS.md
BUILD
CODEOWNERS
CONTRIBUTING.md
GUIDELINES.md
LICENSE Update common (#1265) 2020-01-31 10:40:00 -08:00
Makefile Update common (#1265) 2020-01-31 10:40:00 -08:00
Makefile.core.mk Add json codegen for Operator (#1263) 2020-02-03 09:54:14 -08:00
Makefile.overrides.mk
README.md
SUPPORT.md
WORKSPACE
cue.yaml
go.mod
go.sum
istio.mesh.v1alpha1.pb.html
proto.lock Add query param based hash (#1272) 2020-02-06 09:06:18 -08:00
prototool.yaml

README.md

Istio APIs and Common Configuration Definitions

This repository defines component-level APIs and common configuration formats for the Istio platform. These definitions are specified using the protobuf syntax.

This repository depends only on the tools repository for tools used during build. This repository will not depend on any other repositories. Except for tools, all other Istio repositories can take a dependency on the api repository.

API Guidelines

When making changes to the protos in this repository, your changes must comply with the API guidelines.

Updating

After the protobuf definitions are updated, the corresponding *pb.go, _pb2.py, *.json and Kubernetes Custom Resource Definition files must be generated by running make clean gen and submitted as part of the same PR as the updated definitions. Also make proto-commit must be run to update the proto.lock file with new changes.

If releasing a new tagged version, please update python/istio-api/setup.py version to reflect.

Backwards Incompatible Changes

If a PR tries to make backwards incompatible changes, it will be blocked by protolock. To force these changes in, install protolock and run protolock commit --force.

You must include a note in your PR that you had to force the protolock and why.