Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 120 for registry_ (0.12 sec)

  1. pilot/pkg/serviceregistry/aggregate/controller_test.go

    	}
    	registry1 := serviceregistry.Simple{
    		ProviderID:          provider.ID("mockAdapter1"),
    		DiscoveryController: discovery1,
    	}
    
    	registry2 := serviceregistry.Simple{
    		ProviderID:          provider.ID("mockAdapter2"),
    		DiscoveryController: discovery2,
    	}
    
    	ctls := NewController(Options{&mockMeshConfigHolder{}})
    	ctls.AddRegistry(registry1)
    	ctls.AddRegistry(registry2)
    
    	return ctls
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. pkg/util/image/registry.go

    	"github.com/google/go-containerregistry/pkg/v1/remote"
    	"github.com/google/go-containerregistry/pkg/v1/remote/transport"
    )
    
    // Exists returns true if the image in the argument exists in a container registry.
    // The argument must be a complete image name, e.g. "gcr.io/istio-release/pilot:1.20.0".
    // If the image does not exist, it returns false and an optional error message, for debug purposes.
    func Exists(image string) (bool, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 25 16:28:36 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. tests/integration/ambient/testdata/registry-secret.yaml

    Adil Mohamed M P <******@****.***> 1717448525 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 143 bytes
    - Viewed (0)
  4. pkg/test/framework/components/registryredirector/registry_redirector_server.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: registry-redirector
      labels:
        app: registry-redirector
    spec:
      type: LoadBalancer
      ports:
      - name: http
        port: 1338
      selector:
        app: registry-redirector
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: registry-redirector
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: registry-redirector
      template:
        metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/aggregate/controller.go

    func (c *Controller) AddRegistryAndRun(registry serviceregistry.Instance, stop <-chan struct{}) {
    	if stop == nil {
    		log.Warnf("nil stop channel passed to AddRegistryAndRun for registry %s/%s", registry.Provider(), registry.Cluster())
    	}
    	c.storeLock.Lock()
    	defer c.storeLock.Unlock()
    	c.addRegistry(registry, stop)
    	if c.running {
    		go registry.Run(stop)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. pkg/dns/server/name_table_test.go

    					"pod1.headless-svc.testns.svc.cluster.local": {
    						Ips:       []string{"1.2.3.4"},
    						Registry:  "Kubernetes",
    						Shortname: "pod1.headless-svc",
    						Namespace: "testns",
    					},
    					"pod2.headless-svc.testns.svc.cluster.local": {
    						Ips:       []string{"9.6.7.8"},
    						Registry:  "Kubernetes",
    						Shortname: "pod2.headless-svc",
    						Namespace: "testns",
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 04:26:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. pkg/dns/proto/nds.pb.go

    	// The name of the service registry containing the service (e.g. 'Kubernetes').
    	Registry string `protobuf:"bytes,2,opt,name=registry,proto3" json:"registry,omitempty"`
    	// The k8s service name. Only applies when registry=`Kubernetes`
    	Shortname string `protobuf:"bytes,3,opt,name=shortname,proto3" json:"shortname,omitempty"`
    	// The k8s namespace for the service. Only applies when registry=`Kubernetes`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. tools/docker-builder/main.go

    	rootCmd.Flags().StringVar(&globalArgs.BaseVersion, "base-version", globalArgs.BaseVersion, "base version to use")
    	rootCmd.Flags().StringVar(&globalArgs.BaseImageRegistry, "image-base-registry", globalArgs.BaseImageRegistry, "base image registry to use")
    	rootCmd.Flags().StringVar(&globalArgs.ProxyVersion, "proxy-version", globalArgs.ProxyVersion, "proxy version to use")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  9. manifests/charts/base/values.yaml

        # ImagePullSecrets for control plane ServiceAccount, list of secrets in the same namespace
        # to use for pulling any images in pods that reference this ServiceAccount.
        # Must be set for any cluster configured with private docker registry.
        imagePullSecrets: []
    
        # Used to locate istiod.
        istioNamespace: istio-system
    
        externalIstiod: false
        remotePilotAddress: ""
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 22:00:40 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. tools/packaging/packaging.mk

    deb: ${TARGET_OUT_LINUX}/release/istio-sidecar.deb
    
    # fpm likes to add extremely high levels of compression. This is fine for release, but for local runs
    # where we are just pushing to a local registry (compressed again!), it adds ~1min to builds.
    ifneq ($(FAST_VM_BUILDS),)
    DEB_COMPRESSION=--deb-compression=none
    RPM_COMPRESSION=--rpm-compression=none
    endif
    
    # Base directory for istio binaries. Likely to change !
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 19:54:32 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top