Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 119 for registry_ (0.1 sec)

  1. 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)
  2. 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)
  3. prow/config/default.yaml

            "service-account-signing-key-file": "/etc/kubernetes/pki/sa.key"
    containerdConfigPatches:
      - |-
        [plugins."io.containerd.grpc.v1.cri".registry.mirrors."localhost:5000"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 19:17:14 UTC 2023
    - 1002 bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. samples/kind-lb/setupkind.sh

      esac
    done
    
    # This block is to setup kind to have a local image repo to push
    # images using localhost:5000, to use this feature, start up
    # a registry container such as gcr.io/istio-testing/registry, then
    # connect it to the docker network where kind nodes are running on
    # which normally will be called kind
    FEATURES=$(cat << EOF
    featureGates:
      MixedProtocolLBService: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 02 19:08:19 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. pkg/istio-agent/agent.go

    					}
    					for _, addr := range ipv6 {
    						addresses = append(addresses, addr.String())
    					}
    					nt.Table[host] = &dnsProto.NameTable_NameInfo{
    						Ips:      addresses,
    						Registry: "Kubernetes",
    					}
    				}
    			}
    		})
    		return nt
    	}
    	return nil
    }
    
    func (a *Agent) Close() {
    	if a.xdsProxy != nil {
    		a.xdsProxy.close()
    	}
    	if a.localDNSServer != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
Back to top