Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
b44daed
Doc fixes.
Feb 21, 2019
29a3b64
Add high-level overview and diagrams for MCP (#805)
ayj Feb 21, 2019
16cc4d7
Add envoy metrics service configuration to ProxyConfig (#803)
joeyb Feb 21, 2019
124217d
Update comment in the authN API to match with 1.1 behavior (#808)
diemtvu Feb 22, 2019
2f783de
Rename metrics_service_address to clarify that it is for Envoy's API …
joeyb Feb 22, 2019
5f14ead
Generate separate HTML page per proto under networking (#811)
rshriram Feb 22, 2019
11e69f5
Revert "Generate separate HTML page per proto under networking (#811)"
Feb 23, 2019
231fadc
Update to latest tools.
Feb 24, 2019
70ec2ed
Revert "Update to latest tools."
Feb 24, 2019
120a390
fix mcp update error diagram (#810)
ayj Feb 25, 2019
eac219d
update istio/tools (#815)
rshriram Feb 25, 2019
18f2d9a
Revert "Revert "Generate separate HTML page per proto under networkin…
rshriram Feb 26, 2019
d0dc02a
Minor updates for building docker images. (#817)
geeknoid Feb 26, 2019
26f958d
Add spell checking for docs. (#819)
geeknoid Feb 26, 2019
5f85ce0
Add a bunch of words to the custom dictionary.
Feb 26, 2019
79b2e74
Document exportTo restrictions (#820)
frankbu Feb 26, 2019
f2e09a7
Doc fixes. (#821)
geeknoid Feb 27, 2019
e613e35
Proxy config: Add tls_certs_to_watch field (#824)
drichelson Feb 28, 2019
4fd261a
Revert "Proxy config: Add tls_certs_to_watch field (#824)" (#825)
rshriram Feb 28, 2019
ba50f67
Update gateway and sidecar hosts doc (#826)
frankbu Mar 1, 2019
c1daca8
Update API docs (service entry, gateway, sidecar) (#831)
rshriram Mar 5, 2019
e1557ac
add configurable dns refresh rate to mesh for strict dns cluster, (#…
GregHanson Mar 5, 2019
b51a0e6
Merge release-1.1 => master
Mar 8, 2019
4bca860
Post-merge generation
Mar 8, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
defaults: &defaults
working_directory: /src/istio.io/api
docker:
- image: gcr.io/istio-testing/api-build-tools:2018-10-31
- image: gcr.io/istio-testing/api-build-tools:2019-02-25
environment:
GOPATH: /go
OUT_PATH: /src
Expand Down
21 changes: 11 additions & 10 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ out_path = $(OUT_PATH)
docker_lock = protolock
docker_tool = prototool
else
gen_img := gcr.io/istio-testing/protoc:2018-06-12
gen_img := gcr.io/istio-testing/protoc:2019-02-25
lock_img := gcr.io/istio-testing/protolock:2018-10-23
all_img := gcr.io/istio-testing/api-build-tools:2018-10-31
all_img := gcr.io/istio-testing/api-build-tools:2019-02-25
pwd := $(shell pwd)
mount_dir := /src
repo_dir := istio.io/api
Expand Down Expand Up @@ -70,7 +70,8 @@ gogoslick_plugin := $(gogoslick_plugin_prefix)$(gogo_mapping):$(out_path)
# protoc_gen_docs
########################

protoc_gen_docs_plugin := --docs_out=warnings=true,mode=html_fragment_with_front_matter:$(repo_dir)/
protoc_gen_docs_plugin := --docs_out=warnings=true,dictionary=$(repo_dir)/dictionaries/en-US,custom_word_list=$(repo_dir)/dictionaries/custom.txt,mode=html_fragment_with_front_matter:$(repo_dir)/
protoc_gen_docs_plugin_for_networking := --docs_out=warnings=true,dictionary=$(repo_dir)/dictionaries/en-US,custom_word_list=$(repo_dir)/dictionaries/custom.txt,per_file=true,mode=html_fragment_with_front_matter:$(repo_dir)/

#####################
# Generation Rules
Expand Down Expand Up @@ -240,14 +241,14 @@ routing_v1alpha3_path := networking/v1alpha3
routing_v1alpha3_protos := $(shell find networking/v1alpha3 -type f -name '*.proto' | sort)
routing_v1alpha3_pb_gos := $(routing_v1alpha3_protos:.proto=.pb.go)
routing_v1alpha3_pb_pythons := $(routing_v1alpha3_protos:.proto=_pb2.py)
routing_v1alpha3_pb_doc := $(routing_v1alpha3_path)/istio.routing.v1alpha3.pb.html
routing_v1alpha3_pb_docs := $(routing_v1alpha3_protos:.proto=.pb.html)

generate-routing-go: $(routing_v1alpha3_pb_gos) $(routing_v1alpha3_pb_doc)
generate-routing-go: $(routing_v1alpha3_pb_gos) $(routing_v1alpha3_pb_docs)

$(routing_v1alpha3_pb_gos) $(routing_v1alpha3_pb_doc): $(routing_v1alpha3_protos)
$(routing_v1alpha3_pb_gos) $(routing_v1alpha3_pb_docs): $(routing_v1alpha3_protos)
## Generate networking/v1alpha3/*.pb.go
@$(docker_lock) status
@$(docker_gen) $(gogofast_plugin) $(protoc_gen_docs_plugin)$(routing_v1alpha3_path) $^
@$(docker_gen) $(gogofast_plugin) $(protoc_gen_docs_plugin_for_networking)$(routing_v1alpha3_path) $^

generate-routing-python: $(routing_v1alpha3_pb_pythons)

Expand All @@ -258,7 +259,7 @@ $(routing_v1alpha3_pb_pythons): $(routing_v1alpha3_protos)

clean-routing:
rm -f $(routing_v1alpha3_pb_gos)
rm -f $(routing_v1alpha3_pb_doc)
rm -f $(routing_v1alpha3_pb_docs)

#####################
# rbac/...
Expand Down Expand Up @@ -329,10 +330,10 @@ envoy_pb_pythons := $(envoy_protos:.proto=_pb2.py)
generate-envoy-go: $(envoy_pb_gos) $(envoy_pb_doc)

# Envoy APIs is internal APIs, documents is not required.
$(envoy_pb_gos): $(envoy_protos)
$(envoy_pb_gos): %.pb.go : %.proto
## Generate envoy/*/*.pb.go
@$(docker_lock) status
@$(docker_gen) $(gogofast_plugin) $^
@$(docker_gen) $(gogofast_plugin) $<

generate-envoy-python: $(envoy_pb_pythons)

Expand Down
11 changes: 6 additions & 5 deletions authentication/v1alpha1/istio.authentication.v1alpha1.pb.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading