Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for headers_to_add (0.14 sec)

  1. istioctl/pkg/authz/testdata/configdump.yaml

                "stat_prefix": "connect_originate",
                "cluster": "connect_originate",
                "tunneling_config": {
                 "hostname": "%DOWNSTREAM_LOCAL_ADDRESS%",
                 "headers_to_add": [
                  {
                   "header": {
                    "key": "baggage",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 14:20:23 UTC 2023
    - 206.7K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/builder/extauthz.go

    	}
    	var headersToAdd []*core.HeaderValue
    	additionalHeaders := maps.Keys(config.IncludeAdditionalHeadersInCheck)
    	sort.Strings(additionalHeaders)
    	for _, k := range additionalHeaders {
    		headersToAdd = append(headersToAdd, &core.HeaderValue{
    			Key:   k,
    			Value: config.IncludeAdditionalHeadersInCheck[k],
    		})
    	}
    	if len(headersToAdd) != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/builder/testdata/http/custom-http-provider-out2.yaml

        filter: envoy.filters.http.rbac
        path:
        - key: istio_ext_authz_shadow_effective_policy_id
        value:
          stringMatch:
            prefix: istio-ext-authz
      httpService:
        authorizationRequest:
          headersToAdd:
          - key: x-header-1
            value: value-1
          - key: x-header-2
            value: value-2
        authorizationResponse:
          allowedClientHeaders:
            patterns:
            - exact: Set-cookie
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 20 12:45:43 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/testdata/http/extended-custom-http-provider-out2.yaml

        filter: envoy.filters.http.rbac
        path:
        - key: istio_ext_authz_shadow_effective_policy_id
        value:
          stringMatch:
            prefix: istio-ext-authz
      httpService:
        authorizationRequest:
          headersToAdd:
          - key: x-header-1
            value: value-1
          - key: x-header-2
            value: value-2
        authorizationResponse:
          allowedClientHeaders:
            patterns:
            - exact: Set-cookie
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_waypoint.go

    						ClusterSpecifier: &tcp.TcpProxy_Cluster{Cluster: ConnectOriginate},
    						TunnelingConfig: &tcp.TcpProxy_TunnelingConfig{
    							Hostname:     "%DOWNSTREAM_LOCAL_ADDRESS%",
    							HeadersToAdd: headers,
    						},
    					}),
    				},
    			}},
    		}},
    	}
    	return l
    }
    
    // buildWaypointHTTPFilters augments the common chain of Waypoint-bound HTTP filters.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top