Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 52 for registry_ (0.21 sec)

  1. 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)
  2. 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)
  3. tests/integration/telemetry/api/registry_setup_test.go

    	"istio.io/istio/pkg/test/framework/resource"
    )
    
    var registry registryredirector.Instance
    
    const (
    	// Same user name and password as specified at pkg/test/fakes/imageregistry
    	registryUser   = "user"
    	registryPasswd = "passwd"
    )
    
    func testRegistrySetup(ctx resource.Context) (err error) {
    	registry, err = registryredirector.New(ctx, registryredirector.Config{
    		Cluster: ctx.AllClusters().Default(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/instance.go

    )
    
    // Instance of a service registry. A single service registry combines the capabilities of service discovery
    // and the controller for managing asynchronous events.
    type Instance interface {
    	model.Controller
    	model.ServiceDiscovery
    
    	// Provider backing this service registry (i.e. Kubernetes etc.)
    	Provider() provider.ID
    
    	// Cluster for which the service registry applies. Only needed for multicluster systems.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 18:40:05 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. pkg/test/fakes/imageregistry/main.go

    	"github.com/google/go-containerregistry/pkg/v1/remote"
    
    	"istio.io/istio/pkg/log"
    )
    
    var (
    	port             = flag.Int("port", 1338, "port to run registry on")
    	registry         = flag.String("registry", "gcr.io", "name of registry to redirect registry request to")
    	regexForManifest = regexp.MustCompile(`(?P<Prefix>/v\d+)?/(?P<ImageName>.+)/manifests/(?P<Tag>[^:]*)$`)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. pkg/test/fakes/imageregistry/Dockerfile

    FROM scratch
    ARG TARGETARCH
    COPY main-${TARGETARCH:-amd64}  /registry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 17 16:29:18 UTC 2022
    - 95 bytes
    - Viewed (0)
  7. pkg/test/fakes/imageregistry/Makefile

    # limitations under the License.
    
    .PHONY: build build_and_push clean all
    
    MKFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
    MD_PATH := $(dir $(MKFILE_PATH))
    HUB ?= gcr.io/istio-testing
    IMG := $(HUB)/fake-registry
    BIN_NAME := main
    
    # NOTE: TAG should be updated whenever changes are made in this directory
    # This should also be updated in dependent components
    TAG := 1.3
    
    all: build_and_push clean
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 17 16:29:18 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  8. tests/integration/ambient/wasm_test.go

    	return apps.Captured
    }
    
    func GetTarget() echo.Target {
    	return apps.ServiceAddressedWaypoint
    }
    
    func mapTagToVersionOrFail(t framework.TestContext, tag, version string) {
    	t.Helper()
    	if err := registry.SetupTagMap(map[string]string{
    		imageName + ":" + tag: version,
    	}); err != nil {
    		t.Fatalf("failed to setup the tag map: %v", err)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. pilot/pkg/xds/rds_test.go

    		})
    	}
    }
    
    const (
    	app3Ip    = "10.2.0.1"
    	gatewayIP = "10.3.0.1"
    )
    
    // Common code for the xds testing.
    // The tests in this package use an in-process pilot using mock service registry and
    // envoy.
    
    func sidecarID(ip, deployment string) string { // nolint: unparam
    	return fmt.Sprintf("sidecar~%s~%s-644fc65469-96dza.testns~testns.svc.cluster.local", ip, deployment)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. tools/docker-builder/common.go

    		baseDist = PrimaryVariant
    	}
    	m := map[string]string{
    		// Base version defines the tag of the base image to use. Typically, set in the Makefile and not overridden.
    		"BASE_VERSION": args.BaseVersion,
    		// Registry where the base image is stored
    		"ISTIO_BASE_REGISTRY": args.BaseImageRegistry,
    		// Base distribution picks which variant to build
    		"BASE_DISTRIBUTION": baseDist,
    		// Additional metadata injected into some images
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top