Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 97 for registry_ (0.21 sec)

  1. pilot/pkg/bootstrap/servicecontroller.go

    			log.Warnf("%s registry specified multiple times.", r)
    			continue
    		}
    		registered.Insert(serviceRegistry)
    		log.Infof("Adding %s registry adapter", serviceRegistry)
    		switch serviceRegistry {
    		case provider.Kubernetes:
    			if err := s.initKubeRegistry(args); err != nil {
    				return err
    			}
    		default:
    			return fmt.Errorf("service registry %s is not supported", r)
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. pkg/test/framework/resource/flags.go

    	flag.StringVar(&settingsFromCommandLine.Image.Hub, "istio.test.hub", settingsFromCommandLine.Image.Hub,
    		"Container registry hub to use")
    	flag.StringVar(&settingsFromCommandLine.Image.Tag, "istio.test.tag", settingsFromCommandLine.Image.Tag,
    		"Common Container tag to use when deploying container images")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. pilot/pkg/features/pilot.go

    			" distribute ./etc/certs/root-cert.pem. Only used if custom certificates are not mounted.").Get()
    
    	ClusterName = env.Register("CLUSTER_ID", constants.DefaultClusterName,
    		"Defines the cluster and service registry that this Istiod instance belongs to").Get()
    
    	ExternalIstiod = env.Register("EXTERNAL_ISTIOD", false,
    		"If this is set to true, one Istiod will control remote clusters including CA.").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. prow/integ-suite-kind.sh

    # See https://kind.sigs.k8s.io/docs/user/quick-start/#loading-an-image-into-your-cluster
    export PULL_POLICY=IfNotPresent
    
    # We run a local-registry in a docker container that KinD nodes pull from
    # These values are must match what is in config/trustworthy-jwt.yaml
    export KIND_REGISTRY_NAME="kind-registry"
    export KIND_REGISTRY_PORT="5000"
    export KIND_REGISTRY="localhost:${KIND_REGISTRY_PORT}"
    
    export HUB=${HUB:-"istio-testing"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 05:42:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    	}
    	allocateAndValidate()
    }
    
    func TestWorkloadEntryOnlyMode(t *testing.T) {
    	store, registry, _ := initServiceDiscoveryWithOpts(t, true)
    	createConfigs([]*config.Config{httpStatic}, store, t)
    	svcs := registry.Services()
    	if len(svcs) > 0 {
    		t.Fatalf("expected 0 services, got %d", len(svcs))
    	}
    	svc := registry.GetService("*.google.com")
    	if svc != nil {
    		t.Fatalf("expected nil, got %v", svc)
    	}
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  6. pilot/pkg/xds/nds_test.go

    					"random-1.host.example": {
    						Ips:      []string{"240.240.116.21"},
    						Registry: "External",
    					},
    					"random-2.host.example": {
    						Ips:      []string{"9.9.9.9"},
    						Registry: "External",
    					},
    					"random-3.host.example": {
    						Ips:      []string{"240.240.81.100"},
    						Registry: "External",
    					},
    				},
    			},
    		},
    		{
    			name: "just capture",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/serviceentry/controller.go

    	"istio.io/istio/pkg/util/protomarshal"
    	"istio.io/istio/pkg/util/sets"
    )
    
    var (
    	_   serviceregistry.Instance = &Controller{}
    	log                          = istiolog.RegisterScope("serviceentry", "ServiceEntry registry")
    )
    
    var (
    	prime  = 65011     // Used for secondary hash function.
    	maxIPs = 256 * 254 // Maximum possible IPs for address allocation.
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  8. pilot/pkg/model/endpointshards.go

    type EndpointShards struct {
    	// mutex protecting below map.
    	sync.RWMutex
    
    	// Shards is used to track the shards. EDS updates are grouped by shard.
    	// Current implementation uses the registry name as key - in multicluster this is the
    	// name of the k8s cluster, derived from the config (secret).
    	Shards map[ShardKey][]*IstioEndpoint
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. pkg/adsc/delta.go

    	if len(childNode.Parents) == 0 {
    		// Node fully removed
    		deltaLog.Infof("Removed resource: %v", child.shortName())
    		delete(c.tree, child)
    	}
    }
    
    // Event represents a registry update event
    type Event int
    
    const (
    	// EventAdd is sent when an object is added
    	EventAdd Event = iota
    
    	// EventDelete is sent when an object is deleted
    	// Captures the object at the last known state
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  10. releasenotes/notes/serviceregistry-order.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 50968
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 214 bytes
    - Viewed (0)
Back to top