Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 75 for cds_config (0.12 sec)

  1. pilot/pkg/security/model/authentication.go

    const (
    	// SDSClusterName is the name of the cluster for SDS connections
    	SDSClusterName = pm.SDSClusterName
    
    	// SDSDefaultResourceName is the default name in sdsconfig, used for fetching normal key/cert.
    	SDSDefaultResourceName = pm.SDSDefaultResourceName
    
    	// SDSRootResourceName is the sdsconfig name for root CA, used for fetching root cert.
    	SDSRootResourceName = pm.SDSRootResourceName
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/envoy-filter-filterchain.yaml

                  commonTlsContext:
                    alpnProtocols:
                      - http/1.1
                    tlsCertificateSdsSecretConfigs:
                      - name: kubernetes://wildcard-cert
                        sdsConfig:
                          ads: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 16 03:57:19 UTC 2023
    - 815 bytes
    - Viewed (0)
  3. samples/addons/prometheus.yaml

            regex: default;kubernetes;https
            source_labels:
            - __meta_kubernetes_namespace
            - __meta_kubernetes_service_name
            - __meta_kubernetes_endpoint_port_name
          scheme: https
          tls_config:
            ca_file: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt
            insecure_skip_verify: true
        - bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token
          job_name: kubernetes-nodes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/cpp/renderers/include_renderer.cc

      BlankLine();
    }
    
    string IncludeRenderer::SelfHeaderPath() const {
      return io::JoinPath(context_.path_config.tf_root_dir,
                          context_.path_config.tf_output_dir,
                          context_.cpp_config.unit + "_ops.h");
    }
    
    void IncludeRenderer::Include(const string &tf_file_path) {
      CodeLine("#include \"$0\"",
               io::JoinPath(context_.path_config.tf_prefix_dir, tf_file_path));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/ops/gen/cpp/renderers/renderer_test.cc

    #include "tensorflow/c/experimental/ops/gen/common/path_config.h"
    #include "tensorflow/c/experimental/ops/gen/common/source_code.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/cpp_config.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer_context.h"
    #include "tensorflow/core/platform/test.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/cpp/renderers/guard_renderer.cc

      string self_path = io::JoinPath(context_.path_config.tf_root_dir,
                                      context_.path_config.tf_output_dir,
                                      context_.cpp_config.unit + "_ops.h");
      string with_underscores(self_path);
      std::replace(with_underscores.begin(), with_underscores.end(), '/', '_');
      std::replace(with_underscores.begin(), with_underscores.end(), '.', '_');
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. istioctl/pkg/xds/client.go

    	grpcOpts []grpc.DialOption,
    ) (*discovery.DiscoveryResponse, error) {
    	adscConn, err := adsc.NewWithBackoffPolicy(opts.Xds, &adsc.ADSConfig{
    		Config: adsc.Config{
    			Meta: model.NodeMetadata{
    				Generator:      "event",
    				ServiceAccount: serviceAccount,
    				Namespace:      ns,
    				CloudrunAddr:   opts.IstiodAddr,
    			}.ToStruct(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/egressselector/config.go

    			"direct",
    			"Transport config should be absent for direct connect"),
    		}
    	}
    
    	return nil
    }
    
    func validateUDSConnection(udsConfig *apiserver.UDSTransport, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if udsConfig.UDSName == "" {
    		allErrs = append(allErrs, field.Invalid(
    			fldPath.Child("udsName"),
    			"nil",
    			"UDSName should be present for UDS connections"))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                            ],
                            "tls_certificate_sds_secret_configs": [
                              {
                                "name": "default",
                                "sds_config": {
                                  "api_config_source": {
                                    "api_type": "GRPC",
                                    "grpc_services": [
                                      {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  10. pkg/adsc/adsc.go

    	InsecureSkipVerify bool
    
    	// BackoffPolicy determines the reconnect policy. Based on MCP client.
    	BackoffPolicy backoff.BackOff
    
    	GrpcOpts []grpc.DialOption
    }
    
    // ADSConfig for the ADS connection.
    type ADSConfig struct {
    	Config
    
    	// InitialDiscoveryRequests is a list of resources to watch at first, represented as URLs (for new XDS resource naming)
    	// or type URLs.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
Back to top