API definitions for the Istio project
api
Go to file
Leonardo Sarra bfa7ba498e
Add timeout field to JWTRule (#3018)
* Add timeout field to JWTRule

* Change timeout comment

* Sync gen files

* Sync gen files 2

* Adjust comment

* minor changes to comment
2024-02-20 12:30:40 -08:00
.devcontainer Automator: update common-files@master in istio/api@master (#3089) 2024-02-15 10:33:41 -08:00
.github [CNCF graduation] Add security tab for Istio repos (#2783) 2023-05-11 07:25:18 -07:00
analysis/v1alpha1 Run make gen with new protoc (#3051) 2024-01-17 09:03:58 -08:00
annotation update annotations and labels page (#3043) 2024-01-12 06:40:35 -08:00
authentication/v1alpha1 Run make gen with new protoc (#3051) 2024-01-17 09:03:58 -08:00
common Automator: update common-files@master in istio/api@master (#3089) 2024-02-15 10:33:41 -08:00
common-protos Fix some spelling errors (#2884) 2023-08-08 18:26:18 -07:00
dictionaries
envoy Run make gen with new protoc (#3051) 2024-01-17 09:03:58 -08:00
extensions/v1alpha1 docs: formatting fixes in WasmPlugin (#3070) 2024-01-29 11:46:34 -08:00
kubernetes Add timeout field to JWTRule (#3018) 2024-02-20 12:30:40 -08:00
label update annotations and labels page (#3043) 2024-01-12 06:40:35 -08:00
licenses Update dependencies (#2906) 2023-08-17 11:00:03 -07:00
mcp Fix broken doc link to XDS description (#3073) 2024-01-31 06:10:36 -08:00
mesh/v1alpha1 meshconfig: add compliance policy (#3082) 2024-02-15 09:03:41 -08:00
meta/v1alpha1 Run make gen with new protoc (#3051) 2024-01-17 09:03:58 -08:00
networking Support file mounted CRL (#3052) 2024-02-09 00:43:25 -08:00
operator/v1alpha1 Remove defaultRevision (#2798) 2024-01-24 20:30:03 -08:00
releaselocks Remove releaselocks/ (#2288) 2022-03-17 15:29:43 -07:00
releasenotes OpenTelemetryTracingProvider: New configurations for resource detectors (#3002) 2024-02-02 08:56:41 -08:00
scripts fixes for Duplicate reference docs overwriting each other (#2811) 2023-06-22 06:41:07 -07:00
security Add timeout field to JWTRule (#3018) 2024-02-20 12:30:40 -08:00
stability
telemetry/v1alpha1 docs: fix formatting issues, typo, add links (#3065) 2024-01-24 16:17:02 -08:00
tests Update test dependencies (#3029) 2023-12-14 18:06:33 -08:00
type/v1beta1 Run make gen with new protoc (#3051) 2024-01-17 09:03:58 -08:00
.gitattributes Automator: update common-files@master in istio/api@master (#3076) 2024-01-31 15:44:40 -08:00
.gitignore
BUGS-AND-FEATURE-REQUESTS.md
CODEOWNERS fix CODEOWNERS (#2489) 2022-09-29 06:29:07 -07:00
CONTRIBUTING.md
GUIDELINES.md
LICENSE Automator: update common-files@master in istio/api@master (#2981) 2023-10-31 10:54:28 -07:00
Makefile Automator: update common-files@master in istio/api@master (#2151) 2021-11-11 09:09:02 -08:00
Makefile.core.mk Adopt CRD native validation (#2951) 2023-10-16 12:49:37 -07:00
Makefile.overrides.mk
README.md Run proto-commit as part of make gen (#2546) 2022-11-03 13:35:29 -07:00
SUPPORT.md Automator: update common-files@master in istio/api@master (#3084) 2024-02-12 07:58:35 -08:00
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 Migrate to protoc-gen-crd (#2941) 2023-10-05 16:16:01 -07:00
buf.yaml buf: migrate to v1 API (#2297) 2022-03-25 06:19:22 -07:00
clean.sh Drop generated python protobufs (#2280) 2022-03-17 16:55:44 -07:00
gen.sh Migrate to protoc-gen-crd (#2941) 2023-10-05 16:16:01 -07:00
github.com
go.mod Run make gen with new protoc (#3051) 2024-01-17 09:03:58 -08:00
go.sum Run make gen with new protoc (#3051) 2024-01-17 09:03:58 -08: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 Add timeout field to JWTRule (#3018) 2024-02-20 12:30:40 -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 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.