Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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 Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ SOURCES := $(shell find . -name "*.go" | grep -v test.go)
# ATTENTION: when updating to a new major version of Envoy, check if
# universal header validation has been enabled and if so, we expect
# failures in `test/e2e/header_validation_test.go`.
export ENVOY_IMAGE ?= quay.io/solo-io/envoy-gloo:1.34.6-patch3
export ENVOY_IMAGE ?= quay.io/solo-io/envoy-gloo:1.34.10-patch1
export LDFLAGS := -X 'github.com/kgateway-dev/kgateway/v2/internal/version.Version=$(VERSION)'
export GCFLAGS ?=

Expand Down
2 changes: 2 additions & 0 deletions hack/kind/localstack-values.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
image:
tag: "4.8.0"
extraEnvVars:
- name: LS_LOG
value: debug
Expand Down
2 changes: 1 addition & 1 deletion hack/kind/setup-localstack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function install_localstack() {
helm repo add localstack-repo https://helm.localstack.cloud
helm repo update

helm upgrade -i --create-namespace localstack localstack-repo/localstack --namespace localstack -f ${ROOT_DIR}/localstack-values.yaml
helm upgrade -i --create-namespace localstack localstack-repo/localstack --version 0.6.26 --namespace localstack -f ${ROOT_DIR}/localstack-values.yaml
kubectl wait --for=condition=ready pod -l app.kubernetes.io/name=localstack -n localstack --timeout=120s
}

Expand Down
2 changes: 1 addition & 1 deletion internal/envoyinit/rustformations/Cargo.lock

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

2 changes: 1 addition & 1 deletion internal/envoyinit/rustformations/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"

[dependencies]
# The SDK version must match the Envoy version due to the strict compatibility requirements.
envoy-proxy-dynamic-modules-rust-sdk = { git = "https://github.com/envoyproxy/envoy", rev = "d6a11bfd3436aef5d3aff3237a6cddb18db01d82" }
envoy-proxy-dynamic-modules-rust-sdk = { git = "https://github.com/envoyproxy/envoy", rev = "40ab4828a48f05103573ddee3c807dfa0e3e23f7" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rand = "0.9.0"
Expand Down
Loading