Skip to content

Commit

Permalink
update envoy gloo (#1105)
Browse files Browse the repository at this point in the history
* update envoy
* changelog
* fix gRPC plugin
* update log line
* dep ensure
  • Loading branch information
yuval-k authored and soloio-bulldozer[bot] committed Sep 3, 2019
1 parent 3e2b187 commit 40e56f5
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 10 deletions.
21 changes: 14 additions & 7 deletions Gopkg.lock

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

5 changes: 5 additions & 0 deletions changelog/v0.18.30/updaate-envoy-gloo.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
changelog:
- type: DEPENDENCY_BUMP
dependencyOwner: solo-io
dependencyRepo: envoy-gloo
dependencyTag: v0.1.13
2 changes: 1 addition & 1 deletion projects/envoyinit/cmd/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM soloio/envoy-gloo:0.1.10
FROM soloio/envoy-gloo:0.1.13

COPY envoyinit-linux-amd64 /usr/local/bin/envoyinit

Expand Down
2 changes: 1 addition & 1 deletion projects/gloo/pkg/plugins/grpc/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ func (p *plugin) ProcessRoute(params plugins.RouteParams, in *v1.Route, out *env

// add query matcher to out path. kombina for now
// TODO: support query for matching
outPath += `?{{ default(query_string), "")}}`
outPath += `?{{ default(query_string, "")}}`

// Add param extractors back
var extractors map[string]*transformapi.Extraction
Expand Down
2 changes: 1 addition & 1 deletion projects/gloo/pkg/syncer/envoy_translator_syncer.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func (s *translatorSyncer) syncEnvoy(ctx context.Context, snap *v1.ApiSnapshot)
defer span.End()

s.latestSnap = snap
ctx = contextutils.WithLogger(ctx, "translatorSyncer")
ctx = contextutils.WithLogger(ctx, "envoyTranslatorSyncer")
logger := contextutils.LoggerFrom(ctx)
logger.Infof("begin sync %v (%v proxies, %v upstreams, %v endpoints, %v secrets, %v artifacts, )", snap.Hash(),
len(snap.Proxies), len(snap.Upstreams), len(snap.Endpoints), len(snap.Secrets), len(snap.Artifacts))
Expand Down

0 comments on commit 40e56f5

Please sign in to comment.