Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for Header (0.35 sec)

  1. istioctl/pkg/writer/envoy/configdump/testdata/ecds/output.yaml

          '@type': type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm
          config:
            configuration:
              '@type': type.googleapis.com/google.protobuf.StringValue
              value: '{"header_1":"some_value_1","header_2":"another_value"}'
            name: default.display-metadata
            vmConfig:
              code:
                local:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sun Dec 24 08:16:26 GMT 2023
    - 2.5K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string scheme = 4;
    
      // Custom headers to set in the request. HTTP allows repeated headers.
      // +optional
      repeated HTTPHeader httpHeaders = 5;
    }
    
    // HTTPHeader describes a custom header to be used in HTTP probes
    message HTTPHeader {
      // The header field name
      optional string name = 1;
    
      // The header field value
      optional string value = 2;
    }
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/envoy/configdump/testdata/ecds/configdump.json

                                    "configuration": {
                                        "@type": "type.googleapis.com/google.protobuf.StringValue",
                                        "value": "{\"header_1\":\"some_value_1\",\"header_2\":\"another_value\"}"
                                    }
                                }
                            }
                        },
                        "last_updated": "2022-12-08T11:03:53.225Z"
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sun Dec 24 08:16:26 GMT 2023
    - 5.3K bytes
    - Viewed (0)
  4. manifests/charts/istio-operator/templates/deployment.yaml

    {{- end }}
              resources:
    {{ toYaml .Values.operator.resources | trim | indent 12 }}
              env:
                - name: WATCH_NAMESPACE
                  value: {{.Values.watchedNamespaces | quote}}
                - name: LEADER_ELECTION_NAMESPACE
                  value: {{.Release.Namespace | quote}}
                - name: POD_NAME
                  valueFrom:
                    fieldRef:
                      fieldPath: metadata.name
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Aug 25 19:10:42 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/certificates/v1alpha1/generated.proto

      // contain duplicate certificates, or that use PEM block headers.
      //
      // Users of ClusterTrustBundles, including Kubelet, are free to reorder and
      // deduplicate certificate blocks in this file according to their own logic,
      // as well as to drop PEM block headers and inter-block data.
      optional string trustBundle = 2;
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/authentication/v1/generated.proto

      // +optional
      optional BoundObjectReference boundObjectRef = 3;
    }
    
    // TokenRequestStatus is the result of a token request.
    message TokenRequestStatus {
      // Token is the opaque bearer token.
      optional string token = 1;
    
      // ExpirationTimestamp is the time of expiration of the returned token.
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time expirationTimestamp = 2;
    }
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  7. istioctl/pkg/xds/client.go

    ) ([]grpc.DialOption, error) {
    	ctx := context.TODO()
    	// If we are using the insecure 15010 don't bother getting a token
    	if opts.Plaintext || opts.CertDir != "" {
    		return make([]grpc.DialOption, 0), nil
    	}
    	// Use bearer token
    	aud := tokenAudiences
    	isMCP := strings.HasSuffix(opts.Xds, ".googleapis.com") || strings.HasSuffix(opts.Xds, ".googleapis.com:443")
    	if isMCP {
    		// Special credentials handling when using ASM Managed Control Plane.
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Dec 19 22:42:42 GMT 2023
    - 3.7K bytes
    - Viewed (0)
  8. istioctl/pkg/util/handlers/handlers_test.go

    				return &http.Response{StatusCode: http.StatusOK, Header: cmdtesting.DefaultHeader(), Body: body}, nil
    			case p == "/namespaces/test/deployments/foo" && m == "GET":
    				body := cmdtesting.ObjBody(codec, attachDeploy("test"))
    				return &http.Response{StatusCode: http.StatusOK, Header: cmdtesting.DefaultHeader(), Body: body}, nil
    			default:
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jun 09 18:17:49 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/networking/v1beta1/generated.proto

      // Requests will be matched against the Host field in the following way:
      // 1. If Host is precise, the request matches this rule if the http host header is equal to Host.
      // 2. If Host is a wildcard, then the request matches this rule if the http host header
      // is to equal to the suffix (removing the first label) of the wildcard rule.
      // +optional
      optional string host = 1;
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 14.9K bytes
    - Viewed (0)
  10. manifests/charts/base/crds/crd-all.gen.yaml

                          type: array
                        fromHeaders:
                          description: List of header locations from which JWT is expected.
                          items:
                            properties:
                              name:
                                description: The HTTP header name.
                                type: string
                              prefix:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 20:20:47 GMT 2024
    - 606.1K bytes
    - Viewed (0)
Back to top