Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Lua (0.01 sec)

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

      configPatches:
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_INBOUND
        patch:
          operation: REPLACE
          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)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 5K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/absolute-envoy-filter-operation.yaml

                subFilter:
                  name: "envoy.filters.http.router"
        patch:
          operation: INSERT_FIRST
          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)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 28 12:58:54 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/relative-envoy-filter-operation.yaml

                subFilter:
                  name: "envoy.filters.http.router"
        patch:
          operation: INSERT_BEFORE
          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)
    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/envoy-filter-replace-operation.yaml

                subFilter:
                  name: "envoy.filters.http.router"
        patch:
          operation: REPLACE
          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)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  5. tests/testdata/networking/envoyfilter-without-service/configs.yaml

                subFilter:
                  name: "envoy.filters.http.router"
        patch:
          operation: INSERT_BEFORE
          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. pkg/wellknown/wellknown.go

    	HTTPRateLimit = "envoy.filters.http.ratelimit"
    	// Router HTTP filter
    	Router = "envoy.filters.http.router"
    	// Health checking HTTP filter
    	HealthCheck = "envoy.filters.http.health_check"
    	// Lua HTTP filter
    	Lua = "envoy.filters.http.lua"
    	// Squash HTTP filter
    	Squash = "envoy.filters.http.squash"
    	// HTTPExternalAuthorization HTTP filter
    	HTTPExternalAuthorization = "envoy.filters.http.ext_authz"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 15:29:30 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. pkg/config/xds/deprecated.go

    		wellknown.Gzip:                        "envoy.gzip",
    		wellknown.HealthCheck:                 "envoy.health_check",
    		wellknown.IPTagging:                   "envoy.ip_tagging",
    		wellknown.Lua:                         "envoy.lua",
    		wellknown.HTTPRateLimit:               "envoy.rate_limit",
    		wellknown.Router:                      "envoy.router",
    		wellknown.Squash:                      "envoy.squash",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 15:29:30 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top