-
Notifications
You must be signed in to change notification settings - Fork 352
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(translation): allow configuration of hostEnvKeys on WASM extensions
exposes the hostEnvKeys configuration for WASM extensons through envoy extension policies. This enables access to env vars that are set on the host envoy processes and is a convenient way to share secret meterial with WASM extensions. Signed-off-by: Steve Gargan <steve.gargan@gmail.com>
- Loading branch information
Showing
13 changed files
with
801 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
120 changes: 120 additions & 0 deletions
120
internal/gatewayapi/testdata/envoyextensionpolicy-with-wasm-env-vars.in.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
secrets: | ||
- apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
namespace: envoy-gateway | ||
name: my-pull-secret | ||
data: | ||
.dockerconfigjson: VGhpc0lzTm90QVJlYWxEb2NrZXJDb25maWdKc29u | ||
gateways: | ||
- apiVersion: gateway.networking.k8s.io/v1 | ||
kind: Gateway | ||
metadata: | ||
namespace: envoy-gateway | ||
name: gateway-1 | ||
spec: | ||
gatewayClassName: envoy-gateway-class | ||
listeners: | ||
- name: http | ||
protocol: HTTP | ||
port: 80 | ||
allowedRoutes: | ||
namespaces: | ||
from: All | ||
httpRoutes: | ||
- apiVersion: gateway.networking.k8s.io/v1 | ||
kind: HTTPRoute | ||
metadata: | ||
namespace: default | ||
name: httproute-1 | ||
spec: | ||
hostnames: | ||
- www.example.com | ||
parentRefs: | ||
- namespace: envoy-gateway | ||
name: gateway-1 | ||
sectionName: http | ||
rules: | ||
- matches: | ||
- path: | ||
value: "/foo" | ||
backendRefs: | ||
- name: service-1 | ||
port: 8080 | ||
- apiVersion: gateway.networking.k8s.io/v1 | ||
kind: HTTPRoute | ||
metadata: | ||
namespace: default | ||
name: httproute-2 | ||
spec: | ||
hostnames: | ||
- www.example.com | ||
parentRefs: | ||
- namespace: envoy-gateway | ||
name: gateway-1 | ||
sectionName: http | ||
rules: | ||
- matches: | ||
- path: | ||
value: "/bar" | ||
backendRefs: | ||
- name: service-1 | ||
port: 8080 | ||
envoyextensionpolicies: | ||
- apiVersion: gateway.envoyproxy.io/v1alpha1 | ||
kind: EnvoyExtensionPolicy | ||
metadata: | ||
namespace: envoy-gateway | ||
name: policy-for-gateway # This policy should attach httproute-2 | ||
spec: | ||
targetRef: | ||
group: gateway.networking.k8s.io | ||
kind: Gateway | ||
name: gateway-1 | ||
wasm: | ||
- name: wasm-filter-1 | ||
code: | ||
type: HTTP | ||
http: | ||
url: https://www.example.com/wasm-filter-1.wasm | ||
sha256: 746df05c8f3a0b07a46c0967cfbc5cbe5b9d48d0f79b6177eeedf8be6c8b34b5 | ||
hostEnvKeys: | ||
- SOME_KEY | ||
Check failure on line 82 in internal/gatewayapi/testdata/envoyextensionpolicy-with-wasm-env-vars.in.yaml GitHub Actions / lint
|
||
- ANOTHER_KEY | ||
- name: wasm-filter-2 | ||
rootID: "my-root-id" | ||
code: | ||
type: Image | ||
image: | ||
url: oci://www.example.com/wasm-filter-2:v1.0.0 | ||
pullSecretRef: | ||
name: my-pull-secret | ||
sha256: a1efca12ea51069abb123bf9c77889fcc2a31cc5483fc14d115e44fdf07c7980 | ||
hostEnvKeys: | ||
- SOME_KEY | ||
Check failure on line 94 in internal/gatewayapi/testdata/envoyextensionpolicy-with-wasm-env-vars.in.yaml GitHub Actions / lint
|
||
- ANOTHER_KEY | ||
- code: | ||
type: Image | ||
image: | ||
url: www.example.com:8080/wasm-filter-3 | ||
- apiVersion: gateway.envoyproxy.io/v1alpha1 | ||
kind: EnvoyExtensionPolicy | ||
metadata: | ||
namespace: default | ||
name: policy-for-http-route # This policy should attach httproute-1 | ||
spec: | ||
targetRef: | ||
group: gateway.networking.k8s.io | ||
kind: HTTPRoute | ||
name: httproute-1 | ||
wasm: | ||
- name: wasm-filter-4 | ||
code: | ||
type: HTTP | ||
http: | ||
url: https://www.test.com/wasm-filter-4.wasm | ||
sha256: a1f0b78b8c1320690327800e3a5de10e7dbba7b6c752e702193a395a52c727b6 | ||
failOpen: true | ||
hostEnvKeys: | ||
- SOME_KEY | ||
Check failure on line 119 in internal/gatewayapi/testdata/envoyextensionpolicy-with-wasm-env-vars.in.yaml GitHub Actions / lint
|
||
- ANOTHER_KEY |
Oops, something went wrong.