API definitions for the Istio project
api
Go to file
Istio Automation f04dabe883
Automator: update common-files@release-1.20 in istio/api@release-1.20 (#2969)
2023-10-19 18:41:03 -07:00
.devcontainer Automator: update common-files@release-1.20 in istio/api@release-1.20 (#2969) 2023-10-19 18:41:03 -07:00
.github
analysis/v1alpha1 Drop json schema generation (#2875) 2023-08-02 19:44:43 -07:00
annotation
authentication/v1alpha1 Drop json schema generation (#2875) 2023-08-02 19:44:43 -07:00
common Automator: update common-files@release-1.20 in istio/api@release-1.20 (#2969) 2023-10-19 18:41:03 -07:00
common-protos Fix some spelling errors (#2884) 2023-08-08 18:26:18 -07:00
dictionaries
envoy
extensions/v1alpha1 Adopt CRD native validation (#2951) 2023-10-16 12:49:37 -07:00
kubernetes Revert making gateway.spec.servers required (#2962) 2023-10-16 14:23:38 -07:00
label
licenses Update dependencies (#2906) 2023-08-17 11:00:03 -07:00
mcp Drop json schema generation (#2875) 2023-08-02 19:44:43 -07:00
mesh/v1alpha1 fix broken envoy docs link (#2937) 2023-10-06 19:06:06 -07:00
meta/v1alpha1 Run 'make gen' with new build-tools image (#2944) 2023-10-03 14:43:48 -07:00
networking Revert making gateway.spec.servers required (#2962) 2023-10-16 14:23:38 -07:00
operator/v1alpha1 Run 'make gen' with new build-tools image (#2944) 2023-10-03 14:43:48 -07:00
releaselocks
releasenotes Mirror DestinationRule connection pool configuration on Sidecar (#2961) 2023-10-15 18:53:35 -07:00
scripts
security Update authz document (#2954) 2023-10-12 09:43:42 -07:00
stability
telemetry/v1alpha1 Define targetRef proto (#2888) 2023-09-05 15:45:52 -07:00
tests Adopt CRD native validation (#2951) 2023-10-16 12:49:37 -07:00
type/v1beta1 Adopt CRD native validation (#2951) 2023-10-16 12:49:37 -07:00
.gitattributes
.gitignore
BUGS-AND-FEATURE-REQUESTS.md
CODEOWNERS step 4 (#2964) 2023-10-18 14:53:40 -07:00
CONTRIBUTING.md
GUIDELINES.md
LICENSE
Makefile
Makefile.core.mk Adopt CRD native validation (#2951) 2023-10-16 12:49:37 -07:00
Makefile.overrides.mk
README.md
SUPPORT.md
buf.gen-golang.yaml
buf.gen-noncrd.yaml
buf.gen.yaml Migrate to protoc-gen-crd (#2941) 2023-10-05 16:16:01 -07:00
buf.yaml
clean.sh
gen.sh Migrate to protoc-gen-crd (#2941) 2023-10-05 16:16:01 -07:00
github.com
go.mod Update grpc-go dependency (#2956) 2023-10-10 15:31:54 -07:00
go.sum Update grpc-go dependency (#2956) 2023-10-10 15:31:54 -07:00
google
header.go.txt
istio.io
k8s.io
proto.lock Revert making gateway.spec.servers required (#2962) 2023-10-16 14:23:38 -07: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 gen and submitted as part of the same PR as the updated definitions. Also make gen will 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.