Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 131 for registry_ (0.53 sec)

  1. pkg/kube/controllers/common.go

    					Namespace: obj.GetNamespace(),
    					Name:      ref.Name,
    				})
    			}
    		}
    	}
    	return handler
    }
    
    // EventType represents a registry update event
    type EventType int
    
    const (
    	// EventAdd is sent when an object is added
    	EventAdd EventType = iota
    
    	// EventUpdate is sent when an object is modified
    	// Captures the modified object
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 08:27:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. pilot/pkg/model/context.go

    	// namespace <podName.namespace>.
    	ID string
    
    	// Locality is the location of where Envoy proxy runs. This is extracted from
    	// the registry where possible. If the registry doesn't provide a locality for the
    	// proxy it will use the one sent via ADS that can be configured in the Envoy bootstrap
    	Locality *core.Locality
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // to use for pulling any images in pods that reference this ServiceAccount.
      // Must be set for any cluster configured with private docker registry.
      repeated string imagePullSecrets = 37;
    
      // Specifies the default namespace for the Istio control plane components.
      string istioNamespace = 14;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    destination rule is exported. items: type: string type: array host: description: The name of a service from the service registry. type: string subsets: description: One or more named sets that represent individual versions of a service. items: properties: labels: additionalProperties: type: string description: Labels apply a filter over the endpoints of a service in the service registry. type: object name: description: Name of the subset. type: string trafficPolicy: description: Traffic policies that...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  5. pilot/pkg/model/telemetry_logging.go

    				"the format of <Namespace>/<Hostname>", service, namespaces)
    			return
    		}
    	}
    
    	err = fmt.Errorf("could not find service %s in Istio service registry", service)
    	return
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. tests/integration/ambient/registry_setup_test.go

    			[]byte(createDockerCredential(registryUser, registryPasswd, registry.Address()))),
    	}
    	if err := ctx.ConfigIstio().EvalFile(apps.Namespace.Name(), args, "testdata/registry-secret.yaml").
    		Apply(apply.CleanupConditionally); err != nil {
    		return err
    	}
    	return nil
    }
    
    func createDockerCredential(user, passwd, registry string) string {
    	credentials := `{
    	"auths":{
    		"%v":{
    			"username": "%v",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. pilot/pkg/xds/discovery.go

    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/security"
    )
    
    var periodicRefreshMetrics = 10 * time.Second
    
    type DebounceOptions struct {
    	// DebounceAfter is the delay added to events to wait
    	// after a registry/config event for debouncing.
    	// This will delay the push by at least this interval, plus
    	// the time getting subsequent events. If no change is
    	// detected the push will happen, otherwise we'll keep
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. tests/integration/telemetry/api/registry_setup_test.go

    	"istio.io/istio/pkg/test/framework/resource"
    )
    
    var registry registryredirector.Instance
    
    const (
    	// Same user name and password as specified at pkg/test/fakes/imageregistry
    	registryUser   = "user"
    	registryPasswd = "passwd"
    )
    
    func testRegistrySetup(ctx resource.Context) (err error) {
    	registry, err = registryredirector.New(ctx, registryredirector.Config{
    		Cluster: ctx.AllClusters().Default(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/instance.go

    )
    
    // Instance of a service registry. A single service registry combines the capabilities of service discovery
    // and the controller for managing asynchronous events.
    type Instance interface {
    	model.Controller
    	model.ServiceDiscovery
    
    	// Provider backing this service registry (i.e. Kubernetes etc.)
    	Provider() provider.ID
    
    	// Cluster for which the service registry applies. Only needed for multicluster systems.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 18:40:05 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. pkg/test/fakes/imageregistry/main.go

    	"github.com/google/go-containerregistry/pkg/v1/remote"
    
    	"istio.io/istio/pkg/log"
    )
    
    var (
    	port             = flag.Int("port", 1338, "port to run registry on")
    	registry         = flag.String("registry", "gcr.io", "name of registry to redirect registry request to")
    	regexForManifest = regexp.MustCompile(`(?P<Prefix>/v\d+)?/(?P<ImageName>.+)/manifests/(?P<Tag>[^:]*)$`)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top