https://github.com/kubernetes/kubernetes/pull/24374 (in the merge
queue) turns on proto serialization compilation by default (but does
not use it).
All Go structs in our public API will now be passed through a proto
IDL generation step, and then Go code marshallers / unmarshallers for
those types will be generated. This is still an experimental feature
(i.e. not supported, will change without notice) but commits to master
will now require you also generate that code.
hack/verify-all.sh will require that you run
"hack/update-generated-protobuf.sh"
in order to merge changes to the
API (just like generated conversions). To run this step, you'll
either need Docker installed (in which case the generate step will
start a container with protoc).
If you don't have/want Docker installed, you can install a
3.0.0-beta1+ version of protoc into your path and then run
"hack/after-build/update-generated-protobuf.sh".
--
You received this message because you are subscribed to the Google Groups "kubernetes-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kubernetes-de...@googlegroups.com.
To post to this group, send email to kuberne...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kubernetes-dev/CAH16ShKQN%2BV40RZvKxAv66C9GngT05XsJk-qRMq66TD6CY%3DNtQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
On Mon, Apr 18, 2016 at 8:45 AM, Clayton Coleman <ccol...@redhat.com> wrote:https://github.com/kubernetes/kubernetes/pull/24374 (in the merge
queue) turns on proto serialization compilation by default (but does
not use it).
All Go structs in our public API will now be passed through a proto
IDL generation step, and then Go code marshallers / unmarshallers for
those types will be generated. This is still an experimental feature
(i.e. not supported, will change without notice) but commits to master
will now require you also generate that code.
hack/verify-all.sh will require that you run
"hack/update-generated-protobuf.sh"Is hack/update-generated-protobuf.sh in hack/update-all.sh now (I neither see it in master nor in PR #24374)? If it isn't, then why not?
On Mon, Apr 18, 2016 at 8:45 AM, Clayton Coleman <ccol...@redhat.com> wrote:https://github.com/kubernetes/kubernetes/pull/24374 (in the merge
queue) turns on proto serialization compilation by default (but does
not use it).
All Go structs in our public API will now be passed through a proto
IDL generation step, and then Go code marshallers / unmarshallers for
those types will be generated. This is still an experimental feature
(i.e. not supported, will change without notice) but commits to master
will now require you also generate that code.
hack/verify-all.sh will require that you run
"hack/update-generated-protobuf.sh"Is hack/update-generated-protobuf.sh in hack/update-all.sh now (I neither see it in master nor in PR #24374)? If it isn't, then why not?Accident, will add.