Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for registry_ (0.21 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. tests/integration/ambient/testdata/registry-secret.yaml

    Adil Mohamed M P <******@****.***> 1717448525 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 143 bytes
    - Viewed (0)
  3. 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)
  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. manifests/charts/base/values.yaml

        # ImagePullSecrets for control plane ServiceAccount, list of secrets in the same namespace
        # to use for pulling any images in pods that reference this ServiceAccount.
        # Must be set for any cluster configured with private docker registry.
        imagePullSecrets: []
    
        # Used to locate istiod.
        istioNamespace: istio-system
    
        externalIstiod: false
        remotePilotAddress: ""
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 22:00:40 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. pilot/pkg/model/sidecar_test.go

    			},
    		},
    		{
    			name:       "MeshConfig registry only, Sidecar with registry only",
    			meshConfig: meshConfigWithRegistryOnly,
    			sidecar:    configRegistryOnly,
    			outboundTrafficPolicy: &networking.OutboundTrafficPolicy{
    				Mode: networking.OutboundTrafficPolicy_REGISTRY_ONLY,
    			},
    		},
    		{
    			name:       "MeshConfig registry only, Sidecar with allow any",
    			meshConfig: meshConfigWithRegistryOnly,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. manifests/charts/base/crds/crd-all.gen.yaml

        plural: destinationrules
        shortNames:
        - dr
        singular: destinationrule
      scope: Namespaced
      versions:
      - additionalPrinterColumns:
        - description: The name of a service from the service registry
          jsonPath: .spec.host
          name: Host
          type: string
        - description: 'CreationTimestamp is a timestamp representing the server time
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  8. 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)
  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