Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 66 for registry_ (0.13 sec)

  1. pilot/pkg/model/push_context.go

    // XDSUpdater is used for direct updates of the xDS model and incremental push.
    // Pilot uses multiple registries - for example each K8S cluster is a registry
    // instance. Each registry is responsible for tracking a set
    // of endpoints associated with mesh services, and calling the EDSUpdate on changes.
    // A registry may group endpoints for a service in smaller subsets - for example by
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  2. pkg/model/proxy.go

    	// Warning: If this is enabled, ambient may break; use with caution.
    	DisableHBONESend StringBool `json:"DISABLE_HBONE_SEND,omitempty"`
    
    	// AutoRegister will enable auto registration of the connected endpoint to the service registry using the given WorkloadGroup name
    	AutoRegisterGroup string `json:"AUTO_REGISTER_GROUP,omitempty"`
    
    	// WorkloadEntry specifies the name of the WorkloadEntry this proxy corresponds to.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. Makefile.core.mk

    .PHONY: push
    
    # for now docker is limited to Linux compiles - why ?
    include tools/istio-docker.mk
    
    push: docker.push ## Build and push docker images to registry defined by $HUB and $TAG
    
    #-----------------------------------------------------------------------------
    # Target: environment and tools
    #-----------------------------------------------------------------------------
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster.go

    	istioMtlsSni    string
    	clusterMode     ClusterMode
    	direction       model.TrafficDirection
    	meshExternal    bool
    	serviceMTLSMode model.MutualTLSMode
    	// Indicates the service registry of the cluster being built.
    	serviceRegistry provider.ID
    	// Indicates if the destinationRule has a workloadSelector
    	isDrWithSelector bool
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top