Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for registry_ (0.09 sec)

  1. pilot/pkg/serviceregistry/aggregate/controller_test.go

    	}
    	registry1 := serviceregistry.Simple{
    		ProviderID:          provider.ID("mockAdapter1"),
    		DiscoveryController: discovery1,
    	}
    
    	registry2 := serviceregistry.Simple{
    		ProviderID:          provider.ID("mockAdapter2"),
    		DiscoveryController: discovery2,
    	}
    
    	ctls := NewController(Options{&mockMeshConfigHolder{}})
    	ctls.AddRegistry(registry1)
    	ctls.AddRegistry(registry2)
    
    	return ctls
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/aggregate/controller.go

    func (c *Controller) AddRegistryAndRun(registry serviceregistry.Instance, stop <-chan struct{}) {
    	if stop == nil {
    		log.Warnf("nil stop channel passed to AddRegistryAndRun for registry %s/%s", registry.Provider(), registry.Cluster())
    	}
    	c.storeLock.Lock()
    	defer c.storeLock.Unlock()
    	c.addRegistry(registry, stop)
    	if c.running {
    		go registry.Run(stop)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. pkg/dns/server/name_table_test.go

    					"pod1.headless-svc.testns.svc.cluster.local": {
    						Ips:       []string{"1.2.3.4"},
    						Registry:  "Kubernetes",
    						Shortname: "pod1.headless-svc",
    						Namespace: "testns",
    					},
    					"pod2.headless-svc.testns.svc.cluster.local": {
    						Ips:       []string{"9.6.7.8"},
    						Registry:  "Kubernetes",
    						Shortname: "pod2.headless-svc",
    						Namespace: "testns",
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 04:26:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. pkg/dns/proto/nds.pb.go

    	// The name of the service registry containing the service (e.g. 'Kubernetes').
    	Registry string `protobuf:"bytes,2,opt,name=registry,proto3" json:"registry,omitempty"`
    	// The k8s service name. Only applies when registry=`Kubernetes`
    	Shortname string `protobuf:"bytes,3,opt,name=shortname,proto3" json:"shortname,omitempty"`
    	// The k8s namespace for the service. Only applies when registry=`Kubernetes`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. tools/docker-builder/main.go

    	rootCmd.Flags().StringVar(&globalArgs.BaseVersion, "base-version", globalArgs.BaseVersion, "base version to use")
    	rootCmd.Flags().StringVar(&globalArgs.BaseImageRegistry, "image-base-registry", globalArgs.BaseImageRegistry, "base image registry to use")
    	rootCmd.Flags().StringVar(&globalArgs.ProxyVersion, "proxy-version", globalArgs.ProxyVersion, "proxy version to use")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  6. pilot/pkg/xds/lds_test.go

    	}
    
    	// Expect two vhost blocks in RDS output for 8080 (one for http1, another for http2)
    	// plus one extra due to mem registry
    	if len(adsc.GetRoutes()["8080"].VirtualHosts) != 3 {
    		t.Fatalf("Expected 3 VirtualHosts in RDS output. Got %d", len(adsc.GetRoutes()["8080"].VirtualHosts))
    	}
    }
    
    // TestLDS using gateways
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. pkg/config/model.go

    	// queryable and should be preserved when modifying objects.
    	Annotations map[string]string `json:"annotations,omitempty"`
    
    	// ResourceVersion is an opaque identifier for tracking updates to the config registry.
    	// The implementation may use a change index or a commit log for the revision.
    	// The config client should not make any assumptions about revisions and rely only on
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/storage/v1beta1/generated.proto

    // CSIDriver captures information about a Container Storage Interface (CSI)
    // volume driver deployed on the cluster.
    // CSI drivers do not need to create the CSIDriver object directly. Instead they may use the
    // cluster-driver-registrar sidecar container. When deployed with a CSI driver it automatically
    // creates a CSIDriver object representing the driver.
    // Kubernetes attach detach controller uses this object to determine whether attach is required.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  9. pkg/config/analysis/msg/messages.gen.go

    	// UnknownMeshNetworksServiceRegistry defines a diag.MessageType for message "UnknownMeshNetworksServiceRegistry".
    	// Description: A service registry in Mesh Networks is unknown
    	UnknownMeshNetworksServiceRegistry = diag.NewMessageType(diag.Error, "IST0126", "Unknown service registry %s in network %s")
    
    	// NoMatchingWorkloadsFound defines a diag.MessageType for message "NoMatchingWorkloadsFound".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  10. tests/integration/README.md

    | -istio.test.nocleanup | bool | Do not cleanup resources after test completion. |
    | -istio.test.select | string | Comma separated list of labels for selecting tests to run (e.g. 'foo,+bar-baz'). |
    | -istio.test.hub | string | Container registry hub to use (default HUB environment variable). |
    | -istio.test.tag | string | Common Container tag to use when deploying container images (default TAG environment variable). |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top