Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 246 for Discover (0.21 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/discovery.k8s.io.v1beta1.EndpointSlice.yaml

    addressType: addressTypeValue
    apiVersion: discovery.k8s.io/v1beta1
    endpoints:
    - addresses:
      - addressesValue
      conditions:
        ready: true
        serving: true
        terminating: true
      hints:
        forZones:
        - name: nameValue
      hostname: hostnameValue
      nodeName: nodeNameValue
      targetRef:
        apiVersion: apiVersionValue
        fieldPath: fieldPathValue
        kind: kindValue
        name: nameValue
        namespace: namespaceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/mock/discovery.go

    John Howard <******@****.***> 1691433605 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 18:40:05 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/discovery.go

    John Howard <******@****.***> 1705429542 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 18:25:42 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/core_test.go

    func (m TestClientBuilder) ClientOrDie(name string) clientset.Interface {
    	return m.clientset
    }
    
    func (m TestClientBuilder) DiscoveryClient(name string) (discovery.DiscoveryInterface, error) {
    	return m.clientset.Discovery(), nil
    }
    func (m TestClientBuilder) DiscoveryClientOrDie(name string) discovery.DiscoveryInterface {
    	ret, err := m.DiscoveryClient(name)
    	if err != nil {
    		panic(err)
    	}
    	return ret
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:01 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. pkg/xds/server_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package xds
    
    import (
    	"testing"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	"istio.io/istio/pkg/model"
    )
    
    type TestProxy struct {
    	WatchedResources map[string]*WatchedResource
    }
    
    func (p *TestProxy) DeleteWatchedResource(url string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/discovery/discovery_test.go

    		},
    		{
    			name: "file Discovery with a path",
    			d: kubeadm.JoinConfiguration{
    				Discovery: kubeadm.Discovery{
    					File: &kubeadm.FileDiscovery{
    						KubeConfigPath: "notnil",
    					},
    				},
    			},
    			expect: false,
    		},
    		{
    			name: "file Discovery with an url",
    			d: kubeadm.JoinConfiguration{
    				Discovery: kubeadm.Discovery{
    					File: &kubeadm.FileDiscovery{
    						KubeConfigPath: "https://localhost",
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-discovery/app/cmd.go

    		Title:   "Istio Pilot Discovery",
    		Section: "pilot-discovery CLI",
    		Manual:  "Istio Pilot Discovery",
    	}))
    	rootCmd.AddCommand(requestCmd)
    
    	return rootCmd
    }
    
    func newDiscoveryCommand() *cobra.Command {
    	return &cobra.Command{
    		Use:   "discovery",
    		Short: "Start Istio proxy discovery service.",
    		Args:  cobra.ExactArgs(0),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. pkg/kube/client_factory.go

    package kube
    
    import (
    	"path/filepath"
    	"regexp"
    	"strings"
    	"time"
    
    	"k8s.io/apimachinery/pkg/api/meta"
    	"k8s.io/client-go/discovery"
    	diskcached "k8s.io/client-go/discovery/cached/disk"
    	"k8s.io/client-go/discovery/cached/memory"
    	"k8s.io/client-go/dynamic"
    	"k8s.io/client-go/kubernetes"
    	"k8s.io/client-go/rest"
    	"k8s.io/client-go/restmapper"
    	"k8s.io/client-go/tools/clientcmd"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 21:30:37 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/discovery/file/file.go

    	if err := kubeconfigutil.EnsureCertificateAuthorityIsEmbedded(currentCluster); err != nil {
    		return nil, err
    	}
    
    	// If the discovery file config contains authentication credentials
    	if kubeconfigutil.HasAuthenticationCredentials(config) {
    		klog.V(1).Info("[discovery] Using authentication credentials from the discovery file for validating TLS connection")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:55 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. pilot/pkg/xds/debug_test.go

    		ads := s.ConnectADS()
    
    		ads.RequestResponseAck(t, &discovery.DiscoveryRequest{TypeUrl: v3.ClusterType})
    		ads.RequestResponseAck(t, &discovery.DiscoveryRequest{TypeUrl: v3.ListenerType})
    		ads.RequestResponseAck(t, &discovery.DiscoveryRequest{
    			TypeUrl:       v3.EndpointType,
    			ResourceNames: []string{"outbound|9080||app2.default.svc.cluster.local"},
    		})
    		ads.RequestResponseAck(t, &discovery.DiscoveryRequest{
    			TypeUrl:       v3.RouteType,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top