diff options
| author | mo khan <mo@mokhan.ca> | 2025-05-23 14:54:24 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-05-23 14:54:24 -0600 |
| commit | 3d6cdf0b3d6fa23509208e2355a7b7d26400a8ea (patch) | |
| tree | 039bdf57b99061844aeb0fe55ad0bc1c864166af /bin | |
| parent | 0ba49bfbde242920d8675a193d7af89420456fc0 (diff) | |
| parent | 4beee46dc6c7642316e118a4d3aa51e4b407256e (diff) | |
Merge branch 'envoy-jwt-authn' into 'main'
Add External Authorization Service with Envoy Integration
See merge request gitlab-org/software-supply-chain-security/authorization/sparkled!9
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/entrypoint.sh | 3 | ||||
| -rwxr-xr-x | bin/envoy.sh | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/bin/entrypoint.sh b/bin/entrypoint.sh index 28d6c5f..eb7dc07 100755 --- a/bin/entrypoint.sh +++ b/bin/entrypoint.sh @@ -5,5 +5,4 @@ set -e [ -n "$DEBUG" ] && set -x cd "$(dirname "$0")/.." -echo "[$(date "+%H:%M:%S")] ==> Starting…" -./bin/envoy.sh & ./bin/sparkled +./bin/envoy.sh & ./bin/authzd & ./bin/sparkled diff --git a/bin/envoy.sh b/bin/envoy.sh index 67ea54c..7f2dcee 100755 --- a/bin/envoy.sh +++ b/bin/envoy.sh @@ -29,8 +29,8 @@ if ! command -v envoy; then exit 1 fi -echo "[$(date "+%H:%M:%S")] ==> Starting…" +# https://github.com/envoyproxy/envoy/blob/48f93b68232aba15b5b14743a134691926749122//source/common/common/logger.h#L36 envoy \ --config-yaml "$yaml" \ --log-level warn \ - --component-log-level oauth2:trace + --component-log-level admin:warn,connection:warn,ext_authz:info,grpc:info,health_checker:warn,http:warn,http2:warn,jwt:warn,oauth2:warn,router:warn,secret:warn,upstream:warn |
