Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 57 for Registries (0.24 sec)

  1. pilot/pkg/bootstrap/server.go

    	}
    	return jwtAuthn, nil
    }
    
    func getClusterID(args *PilotArgs) cluster.ID {
    	clusterID := args.RegistryOptions.KubeOptions.ClusterID
    	if clusterID == "" {
    		if hasKubeRegistry(args.RegistryOptions.Registries) {
    			clusterID = cluster.ID(provider.Kubernetes)
    		}
    	}
    	return clusterID
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  2. cluster/gce/config-default.sh

    export ENABLE_CLUSTER_LOGGING="${KUBE_ENABLE_CLUSTER_LOGGING:-true}"
    export ELASTICSEARCH_LOGGING_REPLICAS=1
    
    # Optional: Don't require https for registries in our local RFC1918 network
    if [[ ${KUBE_ENABLE_INSECURE_REGISTRY:-false} == "true" ]]; then
      EXTRA_DOCKER_OPTS="${EXTRA_DOCKER_OPTS} --insecure-registry 10.0.0.0/8"
    fi
    
    # Optional: customize runtime config
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. cluster/gce/config-test.sh

    export ENABLE_CLUSTER_LOGGING=${KUBE_ENABLE_CLUSTER_LOGGING:-true}
    export ELASTICSEARCH_LOGGING_REPLICAS=1
    
    # Optional: Don't require https for registries in our local RFC1918 network
    if [[ ${KUBE_ENABLE_INSECURE_REGISTRY:-false} = 'true' ]]; then
      EXTRA_DOCKER_OPTS="${EXTRA_DOCKER_OPTS} --insecure-registry 10.0.0.0/8"
    fi
    
    if [[ -n "${NODE_ACCELERATORS}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  4. pilot/pkg/xds/ads.go

    // must be called after `SetWorkloadLabels` and `SetServiceTargets`.
    func setTopologyLabels(proxy *model.Proxy) {
    	// This is a bit un-intuitive, but pull the locality from Labels first. The service registries have the best access to
    	// locality information, as they can read from various sources (Node on Kubernetes, for example). They will take this
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceentry/controller.go

    		Reason:         model.NewReasonStats(model.ServiceUpdate),
    	}
    	s.XdsUpdater.ConfigUpdate(pushReq)
    }
    
    // WorkloadInstanceHandler defines the handler for service instances generated by other registries
    func (s *Controller) WorkloadInstanceHandler(wi *model.WorkloadInstance, event model.Event) {
    	log.Debugf("Handle event %s for workload instance (%s/%s) in namespace %s", event,
    		wi.Kind, wi.Endpoint.Address, wi.Namespace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  6. pkg/features/kube_features.go

    	// owner: @andrewsykim
    	// alpha: v1.23
    	// beta: v1.29
    	//
    	// Disable in-tree functionality in kubelet to authenticate to cloud provider container registries for image pull credentials.
    	DisableKubeletCloudCredentialProviders featuregate.Feature = "DisableKubeletCloudCredentialProviders"
    
    	// owner: @HirazawaUi
    	// kep: http://kep.k8s.io/4004
    	// alpha: v1.29
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  7. pilot/pkg/model/sidecar.go

    			log.Debugf("Service %s/%s from registry %s ignored as it is already added", s.Attributes.Namespace, s.Hostname, s.Attributes.ServiceRegistry)
    			return
    		}
    		// We do not merge k8s service with any other services from other registries
    		if existing.Attributes.ServiceRegistry == provider.Kubernetes && s.Attributes.ServiceRegistry != provider.Kubernetes {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/controller.go

    					out = append(out, model.ServiceInstanceToTarget(instance))
    				}
    			}
    		}
    	}
    	return out
    }
    
    // WorkloadInstanceHandler defines the handler for service instances generated by other registries
    func (c *Controller) WorkloadInstanceHandler(si *model.WorkloadInstance, event model.Event) {
    	c.queue.Push(func() error {
    		c.workloadInstanceHandler(si, event)
    		return nil
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context.go

    	// the original dest rules from which above rule is merged.
    	from []types.NamespacedName
    }
    
    // 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.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    // generated names and a 50% probability occurs at ~4500
    // generated names.
    const maxNameGenerationCreateAttempts = 8
    
    // Create inserts a new item according to the unique key from the object.
    // Note that registries may mutate the input object (e.g. in the strategy
    // hooks).  Tests which call this might want to call DeepCopy if they expect to
    // be able to examine the input and output objects for differences.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
Back to top