Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for envoy_on_request (0.23 sec)

  1. pkg/config/analysis/analyzers/testdata/envoy-filter-replace-operation.yaml

          value: # Lua filter specification
           name: envoy.lua
           typed_config:
              "@type": "type.googleapis.com/envoy.extensions.filters.http.lua.v3.Lua"
              inlineCode: |
                function envoy_on_request(request_handle)
                  -- Make an HTTP call to an upstream host with the following headers, body, and timeout.
                  local headers, body = request_handle:httpCall(
                   "lua_cluster",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/envoy-filter-patch-operation.yaml

          value: # Lua filter specification
           name: envoy.lua
           typed_config:
              "@type": "type.googleapis.com/envoy.extensions.filters.http.lua.v3.Lua"
              inlineCode: |
                function envoy_on_request(request_handle)
                  -- Make an HTTP call to an upstream host with the following headers, body, and timeout.
                  local headers, body = request_handle:httpCall(
                   "lua_cluster",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 5K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/relative-envoy-filter-operation.yaml

          value: # Lua filter specification
           name: envoy.lua
           typed_config:
              "@type": "type.googleapis.com/envoy.extensions.filters.http.lua.v3.Lua"
              inlineCode: |
                function envoy_on_request(request_handle)
                  -- Make an HTTP call to an upstream host with the following headers, body, and timeout.
                  local headers, body = request_handle:httpCall(
                   "lua_cluster",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/absolute-envoy-filter-operation.yaml

          value: # lua filter specification
           name: envoy.lua
           typed_config:
              "@type": "type.googleapis.com/envoy.extensions.filters.http.lua.v3.Lua"
              inlineCode: |
                function envoy_on_request(request_handle)
                  -- Make an HTTP call to an upstream host with the following headers, body, and timeout.
                  local headers, body = request_handle:httpCall(
                   "lua_cluster",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 28 12:58:54 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. tests/testdata/networking/envoyfilter-without-service/configs.yaml

          value: # lua filter specification
            name: envoy.lua
            typed_config:
              "@type": "type.googleapis.com/envoy.extensions.filters.http.lua.v3.Lua"
              inlineCode: |
                function envoy_on_request(request_handle)
                  request_handle:logWarn("Hello World")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 13 16:44:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. tests/integration/pilot/common/routing.go

          value:
           name: envoy.lua
           typed_config:
              "@type": "type.googleapis.com/envoy.extensions.filters.http.lua.v3.Lua"
              inlineCode: |
                function envoy_on_request(request_handle)
                  request_handle:headers():add("x-lua-outbound", "hello world")
                end
      - applyTo: VIRTUAL_HOST
        match:
          context: SIDECAR_OUTBOUND
        patch:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  7. tests/integration/ambient/baseline_test.go

          value:
            name: envoy.lua
            typed_config:
              "@type": "type.googleapis.com/envoy.extensions.filters.http.lua.v3.Lua"
              inlineCode: |
                function envoy_on_request(request_handle)
                  request_handle:headers():add("x-lua-inbound", "hello world")
                end
      - applyTo: VIRTUAL_HOST
        match:
          context: SIDECAR_INBOUND
        patch:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
Back to top