API definitions for the Istio project
api
Go to file
John Howard 5ebfc628bd
buf: migrate to v1 API (#2297)
2022-03-25 06:19:22 -07:00
.github/ISSUE_TEMPLATE
analysis/v1alpha1 Migrate from gogo/protobuf to golang/protobuf (#2293) 2022-03-23 08:11:37 -07:00
annotation
authentication/v1alpha1 Migrate from gogo/protobuf to golang/protobuf (#2293) 2022-03-23 08:11:37 -07:00
common Automator: update common-files@master in istio/api@master (#2300) 2022-03-24 16:09:21 -07:00
common-protos
dictionaries
envoy
extensions/v1alpha1 buf: migrate to v1 API (#2297) 2022-03-25 06:19:22 -07:00
kubernetes
label
licenses Migrate from gogo/protobuf to golang/protobuf (#2293) 2022-03-23 08:11:37 -07:00
mcp Migrate from gogo/protobuf to golang/protobuf (#2293) 2022-03-23 08:11:37 -07:00
mesh/v1alpha1 Migrate from gogo/protobuf to golang/protobuf (#2293) 2022-03-23 08:11:37 -07:00
meta/v1alpha1 buf: migrate to v1 API (#2297) 2022-03-25 06:19:22 -07:00
networking Migrate from gogo/protobuf to golang/protobuf (#2293) 2022-03-23 08:11:37 -07:00
operator/v1alpha1 buf: migrate to v1 API (#2297) 2022-03-25 06:19:22 -07:00
releaselocks
releasenotes
scripts
security Migrate from gogo/protobuf to golang/protobuf (#2293) 2022-03-23 08:11:37 -07:00
stability
telemetry/v1alpha1 Migrate from gogo/protobuf to golang/protobuf (#2293) 2022-03-23 08:11:37 -07:00
type/v1beta1 Migrate from gogo/protobuf to golang/protobuf (#2293) 2022-03-23 08:11:37 -07:00
.gitattributes
.gitignore
BUGS-AND-FEATURE-REQUESTS.md
CODEOWNERS
CONTRIBUTING.md
GUIDELINES.md
LICENSE
Makefile
Makefile.core.mk
Makefile.overrides.mk
README.md
SUPPORT.md
buf.gen-golang.yaml buf: migrate to v1 API (#2297) 2022-03-25 06:19:22 -07:00
buf.gen-noncrd.yaml buf: migrate to v1 API (#2297) 2022-03-25 06:19:22 -07:00
buf.gen.yaml buf: migrate to v1 API (#2297) 2022-03-25 06:19:22 -07:00
buf.yaml buf: migrate to v1 API (#2297) 2022-03-25 06:19:22 -07:00
clean.sh
cue.yaml
gen.sh
github.com
go.mod Migrate from gogo/protobuf to golang/protobuf (#2293) 2022-03-23 08:11:37 -07:00
go.sum Migrate from gogo/protobuf to golang/protobuf (#2293) 2022-03-23 08:11:37 -07:00
google
header.go.txt Migrate from gogo/protobuf to golang/protobuf (#2293) 2022-03-23 08:11:37 -07:00
istio.io
k8s.io
proto.lock
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 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.

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.