Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ready: Use envoy listener to expose endpoint from worker for ambassador #4253

Closed
wants to merge 40 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
e3e52fb
.github: Clean up the log collection
LukeShu May 18, 2022
6befc66
py-list-deps: Add a hack to work with newer setuptools
LukeShu May 18, 2022
5d28fae
build-sys: Don't say .PHONY: %.clean every dang time
LukeShu May 19, 2022
23e0fbe
envoy.mk: Fix a typoed line affecting `make clobber`
LukeShu May 19, 2022
d404cff
build-sys: Add a default %.clean / %.rm implementation
LukeShu May 19, 2022
c7dc932
build-sys: Begone with the top-level bin/
LukeShu May 19, 2022
1955eb0
build-sys: Fix typos in comments
LukeShu May 19, 2022
c891c00
build-sys: Don't forget to pass `--rm` to `docker run`
LukeShu May 19, 2022
a4b13d2
.github: Have CI check that `make clobber` works for everything we do…
LukeShu May 19, 2022
1b9baa4
build-sys: Fix `make clobber`
LukeShu May 19, 2022
0f66f56
.github: Fix the repatriation logic to deal with merged/closed PRs
LukeShu May 20, 2022
8c1ebc0
Pin to Alpine 3.15 with glibc 2.34 -- 2.35 seems to have LD_BIND stuc…
May 23, 2022
37bb279
While we're at it, drop the superfluous `/` screwing up `make deploy`…
May 23, 2022
ae89c2c
Swap order of auth & cors
Mar 24, 2022
f697bbf
CHANGELOG
Mar 25, 2022
ae20c4c
add filters and filterpolicies to snapshots
Feb 25, 2022
1396a17
check for authservices in annotation config
Feb 18, 2022
2d26e33
xfail custom AuthServices in aes
Feb 18, 2022
63374f8
add debug and error logging to watcher functions
May 3, 2022
500ae8f
no synthetic authservice in demo mode. The demo mode provides its own…
May 11, 2022
e6b8247
syntheticauth: cleanup check for docker demo mode
May 24, 2022
27e213d
syntheticauth: add more test cases and cleanup old comments
May 24, 2022
23c6597
syntheticauth: update test comments and expected values
May 24, 2022
fd73c97
syntheticauth: fix an edgecase where invalid authservices are not rem…
May 24, 2022
35ea8a7
Revert "Kill off pkg/dtest"
May 25, 2022
dcd69ed
Revert "Kill off pkg/k8s"
May 25, 2022
0932a29
Revert "kubeapply: Do a better job of waiting for CRDs"
May 25, 2022
f430a97
Revert "pkg/kubeapply: Transition to use pkg/kates rather than pkg/k8s"
May 25, 2022
4f4dbbd
Revert "kates: Implement a `kubectl apply`-like function"
May 25, 2022
9049777
Allow Host and TLSContext to configure a CRL
May 25, 2022
cf1713f
Added KAT test for TLSContext with CRL
May 25, 2022
3d3396a
Skipping CRL tests for envoy V2
May 25, 2022
04cea57
Added changelog entry
May 25, 2022
06fdd38
cache: fix an issue where the cache key for mappings is wrong when mu…
May 27, 2022
432134c
ad changelog for Mapping cache fix
May 27, 2022
3fb6b2f
make the cache tests actually run
May 27, 2022
793ac44
ready: Add option to enable envoy readiness endpoint from worker
jfrabaute Jun 3, 2021
8888f4a
ready: Move from module config to env vars
jfrabaute May 27, 2022
c0f4595
ready: Use the new /ready listener in the go code
jfrabaute May 28, 2022
0344152
ready: Remove AMBASSADOR_READY_IP env var
jfrabaute May 28, 2022
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
Prev Previous commit
Next Next commit
While we're at it, drop the superfluous / screwing up make deploy
… on MacOS. Sigh.

Thanks to @LukeShu for the help here!

Signed-off-by: Flynn <[email protected]>
Flynn authored and LanceEa committed May 28, 2022
commit 37bb279bf0a47995b0e2e5aa842f83c53223ee9c
2 changes: 1 addition & 1 deletion build-aux/main.mk
Original file line number Diff line number Diff line change
@@ -150,7 +150,7 @@ boguschart_dir = build-output/chart-2.0.0-bogus_7.0.0-bogus.d
boguschart_tgz = $(patsubst %.d,%.tgz,$(boguschart_dir))

# YAML manifests
build-output/yaml-%: $(shell find $(CURDIR)/manifests/emissary/ -type d -o -name '*.yaml.in') $(var.)DEV_REGISTRY $(var.)RELEASE_REGISTRY
build-output/yaml-%: $(shell find $(CURDIR)/manifests/emissary -type d -o -name '*.yaml.in') $(var.)DEV_REGISTRY $(var.)RELEASE_REGISTRY
ifeq ($(CI),)
rm -rf $@
else