pkg/apis/istio/v1alpha3
lIuDuI c697d0b0e1 Find some duplicate words for "the" and delete them (#392)
Signed-off-by: xichengliudui <1693291525@qq.com>
2019-04-22 10:54:28 -07:00
..
README.md Format markdown (#189) 2018-12-04 14:14:25 -08:00
destinationrule_types.go Fix lint error: Address struct field naming (#352) 2019-03-29 10:23:54 -07:00
doc.go Add Istio client from knative/serving (#35) 2018-08-03 16:14:10 -07:00
gateway_types.go Add CredentialName into Gateway (#360) 2019-04-02 11:10:56 -07:00
register.go Add Istio DestinationRule and Policy into Istio apis and clients (#43) 2018-08-22 16:16:59 -07:00
virtualservice_types.go Find some duplicate words for "the" and delete them (#392) 2019-04-22 10:54:28 -07:00
zz_generated.deepcopy.go Add support for the Istio 1.1 per-route Headers. (#385) 2019-04-15 14:37:00 -07:00

README.md

What are these files?

These are Go structs for Istio CRD. We translated them from proto files in https://github.com/istio/api/tree/master/networking/v1alpha3 .

Why do we hand-translate from proto? i.e Why can't we vendor these?

Istio needs to run on many platforms and as a reason they represent their objects internally as proto. On Kubernetes, their API take in JSON objects and convert to proto before processing them.

So they have nothing we can vendor, except for the Go files that are generated by the proto compiler, which is not compatible with K8s API code-generator at all.

We may be able to donate our translation so they can maintain it themselves. See https://github.com/istio/istio/issues/6084.