API definitions for the Istio project
api
Go to file
John Howard fb462ece86
Add configuration for prometheus aggregation (#1354)
* Add configuration for prometheus aggregation

Design:
https://docs.google.com/document/d/1TTeN4MFmh4aUYYciR4oDBTtJsxl5-T5Tu3m3mGEdSo8/edit

* regen

* aggregate -> merge

* add default

* fix gen

* Update comment

* gen
2020-04-07 10:16:55 -07:00
.github/ISSUE_TEMPLATE
annotation Add configuration for prometheus aggregation (#1354) 2020-04-07 10:16:55 -07:00
authentication/v1alpha1 Hide v1alpha1 RBAC and Authentication policy (#1351) 2020-03-25 06:38:22 -07:00
common Automator: update common-files@master in istio/api@master (#1365) 2020-04-03 14:13:12 -07:00
common-protos Release 1 5 common files update (#1240) 2020-01-22 13:45:07 -08:00
dictionaries
envoy/config/filter
kubernetes Add support for VirtualService delegate (#1209) 2020-04-02 23:49:18 -07:00
label Label for the Istio Control Plane revision and the labels created by the Operator (#1361) 2020-04-01 15:38:54 -07:00
licenses Move operator API to separate dir (#1223) 2020-01-06 09:02:25 -08:00
mcp
mesh/v1alpha1 Add configuration for prometheus aggregation (#1354) 2020-04-07 10:16:55 -07:00
mixer Generate with latest build tool (#1349) 2020-03-24 16:02:30 -07:00
networking delete redundant space on envoy_filter.proto (#1362) 2020-04-03 02:34:22 -07:00
operator Generate with latest build tool (#1349) 2020-03-24 16:02:30 -07:00
policy/v1beta1 Generate with latest build tool (#1349) 2020-03-24 16:02:30 -07:00
python Add configuration for prometheus aggregation (#1354) 2020-04-07 10:16:55 -07:00
rbac/v1alpha1 Hide v1alpha1 RBAC and Authentication policy (#1351) 2020-03-25 06:38:22 -07:00
releaselocks Localhost TLS termination and initiation in Sidecar (#1333) 2020-03-26 12:33:17 -07:00
scripts
security/v1beta1 Fix rendering of yaml in RequestAuthentication docs (#1367) 2020-04-07 07:22:52 -07:00
type/v1beta1 fix comments (#1228) 2020-01-08 18:55:30 -08:00
.gitattributes
.gitignore Automator: update common-files@master in istio/api@master (#1317) 2020-03-09 11:38:10 -07:00
BUGS-AND-FEATURE-REQUESTS.md
BUILD
CODEOWNERS Add Josh to master code owner list (#1340) 2020-03-17 13:31:26 -07:00
CONTRIBUTING.md
GUIDELINES.md
LICENSE Update common (#1265) 2020-01-31 10:40:00 -08:00
Makefile Automator: update common-files@master in istio/api@master (#1356) 2020-04-01 11:38:02 -07:00
Makefile.core.mk Fix MeshConfig field tags for JSON unmarshal (#1320) 2020-03-11 12:45:01 -07:00
Makefile.overrides.mk
README.md
SUPPORT.md
WORKSPACE
cue.yaml Add v1beta1 for Networking APIs (#1232) 2020-01-15 09:42:00 -08:00
go.mod Move operator API to separate dir (#1223) 2020-01-06 09:02:25 -08:00
go.sum Move operator API to separate dir (#1223) 2020-01-06 09:02:25 -08:00
istio.mesh.v1alpha1.pb.html
proto.lock Add support for VirtualService delegate (#1209) 2020-04-02 23:49:18 -07:00
prototool.yaml Move operator API to separate dir (#1223) 2020-01-06 09:02:25 -08:00

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.