API definitions for the Istio project
api
Go to file
Istio Automation facdc129e7
Automator: update common-files@release-1.20 in istio/api@release-1.20 (#3232)
2024-06-04 21:50:48 -04:00
.devcontainer Automator: update common-files@release-1.20 in istio/api@release-1.20 (#3232) 2024-06-04 21:50:48 -04:00
.github
analysis/v1alpha1
annotation update annotations and labels page (#3048) 2024-01-15 17:54:48 -08:00
authentication/v1alpha1
common Automator: update common-files@release-1.20 in istio/api@release-1.20 (#3232) 2024-06-04 21:50:48 -04:00
common-protos
dictionaries
envoy [release-1.20] Update CEL documentation to capture type checking errors. (#2990) 2023-11-15 17:37:04 -08:00
extensions/v1alpha1 [release-1.20] Unhide the targetRef docs (#3010) 2023-11-30 18:11:22 -08:00
kubernetes Add note on targetRef + authorization policy in multi-revision environment (#3023) 2023-12-12 18:05:15 -08:00
label update annotations and labels page (#3048) 2024-01-15 17:54:48 -08:00
licenses
mcp
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 Fix env variable name for VerifyCertAtClient (#3020) 2023-12-07 06:36:27 -08: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 Add note on targetRef + authorization policy in multi-revision environment (#3023) 2023-12-12 18:05:15 -08:00
stability
telemetry/v1alpha1 [release-1.20] Unhide the targetRef docs (#3010) 2023-11-30 18:11:22 -08:00
tests Adopt CRD native validation (#2951) 2023-10-16 12:49:37 -07:00
type/v1beta1 [release-1.20] Unhide the targetRef docs (#3010) 2023-11-30 18:11:22 -08: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.