Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 146 for clients (0.19 sec)

  1. common-protos/k8s.io/api/discovery/v1/generated.proto

      // must handle different types of addresses in the context of their own
      // capabilities. This must contain at least one address but no more than
      // 100. These are all assumed to be fungible and clients may choose to only
      // use the first element. Refer to: https://issue.k8s.io/106267
      // +listType=set
      repeated string addresses = 1;
    
      // conditions contains information about the current status of the endpoint.
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 8K bytes
    - Viewed (0)
  2. istioctl/pkg/cli/context.go

    }
    
    func (i *instance) CLIClientWithRevision(rev string) (kube.CLIClient, error) {
    	if i.clients == nil {
    		i.clients = make(map[string]kube.CLIClient)
    	}
    	if i.clients[rev] == nil {
    		client, err := newKubeClientWithRevision(*i.kubeconfig, *i.configContext, rev)
    		if err != nil {
    			return nil, err
    		}
    		i.clients[rev] = client
    	}
    	return i.clients[rev], nil
    }
    
    func (i *instance) CLIClient() (kube.CLIClient, error) {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 02 08:32:06 GMT 2024
    - 6.4K bytes
    - Viewed (0)
  3. architecture/networking/controllers.md

    Additionally, it has a fake client variant, that does the same thing but with fake clients for use in unit tests.
    
    Aside from this, there are a few conveniences and workarounds built-in to the client to make things simpler.
    
    *All Istio Kubernetes usage should use this library and not operate on Kubernetes clients directly.*
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Feb 09 17:41:25 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  4. manifests/charts/istio-operator/crds/crd-operator.yaml

          type: string
        - description: 'CreationTimestamp is a timestamp representing the server time
            when this object was created. It is not guaranteed to be set in happens-before
            order across separate operations. Clients may not set this value. It is represented
            in RFC3339 form and is in UTC. Populated by the system. Read-only. Null for
            lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata'
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Sat Mar 27 03:38:21 GMT 2021
    - 1.4K bytes
    - Viewed (0)
  5. architecture/ambient/ztunnel.md

    Additionally, using the redirection mechanism reduces the need for clients to know the destination's ztunnel address.
    
    Below shows an example outbound request. The "target" path is what the client sends, while the "actual" path is the real network flow after redirection.
    
    ```mermaid
    graph LR
        subgraph Client Node
            Client
            CZ["Ztunnel"]
        end
        subgraph Server Node
            Server
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Apr 25 22:35:16 GMT 2024
    - 16.6K bytes
    - Viewed (0)
  6. manifests/charts/base/crds/crd-all.gen.yaml

                                      Controls which mode of metrics generation is selected: `CLIENT`, `SERVER`, or `CLIENT_AND_SERVER`.
    
                                      Valid Options: CLIENT_AND_SERVER, CLIENT, SERVER
                                    enum:
                                    - CLIENT_AND_SERVER
                                    - CLIENT
                                    - SERVER
                                    type: string
    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)
  7. common-protos/k8s.io/api/core/v1/generated.proto

      optional string resourceClaimTemplateName = 2;
    }
    
    // ClientIPConfig represents the configurations of Client IP based session affinity.
    message ClientIPConfig {
      // timeoutSeconds specifies the seconds of ClientIP type session sticky time.
      // The value must be >0 && <=86400(for 1 day) if ServiceAffinity == "ClientIP".
      // Default value is 10800(for 3 hours).
      // +optional
      optional int32 timeoutSeconds = 1;
    }
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                      Controls which mode of metrics generation is selected: `CLIENT`, `SERVER`, or `CLIENT_AND_SERVER`.
    
                                      Valid Options: CLIENT_AND_SERVER, CLIENT, SERVER
                                    enum:
                                    - CLIENT_AND_SERVER
                                    - CLIENT
                                    - SERVER
                                    type: string
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 18:46:49 GMT 2024
    - 570.3K bytes
    - Viewed (0)
  9. manifests/charts/ztunnel/values.yaml

      # Revision is set as 'version' label and part of the resource names when installing multiple control planes.
      revision: ""
    
      # The customized CA address to retrieve certificates for the pods in the cluster.
      # CSR clients such as the Istio Agent and ingress gateways can use this to specify the CA endpoint.
      caAddress: ""
    
      # Used to locate istiod.
      istioNamespace: istio-system
    
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  10. istioctl/pkg/xds/client.go

    Xiaopeng Han <******@****.***> 1703025762 +0800
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Dec 19 22:42:42 GMT 2023
    - 3.7K bytes
    - Viewed (0)
Back to top