Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 120 for registry_ (0.09 sec)

  1. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +optional
      // +patchMergeKey=uid
      // +patchStrategy=merge
      repeated OwnerReference ownerReferences = 13;
    
      // Must be empty before the object is deleted from the registry. Each entry
      // is an identifier for the responsible component that will remove the entry
      // from the list. If the deletionTimestamp of the object is non-nil, entries
      // in this list can only be removed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. prow/config/ambient-sc.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
    - 693 bytes
    - Viewed (0)
  3. prow/lib.sh

            -d --restart=always -p "${KIND_REGISTRY_PORT}:5000" --name "${KIND_REGISTRY_NAME}" \
            gcr.io/istio-testing/registry:2
    
        # Allow kind nodes to reach the registry
        docker network connect "kind" "${KIND_REGISTRY_NAME}"
      fi
    
      # https://docs.tilt.dev/choosing_clusters.html#discovering-the-registry
      for cluster in $(kind get clusters); do
        # TODO get context/config from existing variables
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. pilot/cmd/pilot-agent/status/server.go

    	http                  *http.Client
    	enableProfiling       bool
    	registry              prometheus.Gatherer
    	shutdown              context.CancelFunc
    	drain                 func()
    }
    
    func initializeMonitoring() (prometheus.Gatherer, error) {
    	registry := prometheus.NewRegistry()
    	wrapped := prometheus.WrapRegistererWithPrefix("istio_agent_", registry)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. pilot/test/xds/fake.go

    	KubernetesVersion string
    	// If provided, a service registry with the name of each map key will be created with the given objects.
    	KubernetesObjectsByCluster map[cluster.ID][]runtime.Object
    	// If provided, these objects will be used directly for the default cluster ("Kubernetes" or DefaultClusterName)
    	KubernetesObjects []runtime.Object
    	// If provided, a service registry with the name of each map key will be created with the given objects.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. manifests/charts/istio-operator/values.yaml

    defaults:
      hub: gcr.io/istio-testing
      tag: latest
    
      # ImagePullSecrets for operator ServiceAccount, list of secrets in the same namespace
      # used to pull operator image. Must be set for any cluster configured with private docker registry.
      imagePullSecrets: []
    
      # Specify image pull policy if default behavior isn't desired.
      # Default behavior: latest images will be Always else IfNotPresent.
      imagePullPolicy: ""
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. manifests/charts/istio-cni/values.yaml

        # ImagePullSecrets will be added to the corresponding Deployment(StatefulSet) objects.
        # Must be set for any cluster configured with private docker registry.
        imagePullSecrets: []
        # - private-registry-key
    
        # Default resources allocated
        defaultResources:
          requests:
            cpu: 100m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. tests/integration/telemetry/api/wasmplugin_test.go

    		defer func() {
    			generation++
    		}()
    		mapTagToVersionOrFail(t, c.tag, c.upstreamVersion)
    		// registry-redirector will redirect to the gzipped tarball of the first layer with this request.
    		// The gzipped tarball should have a wasm module.
    		wasmModuleURL := fmt.Sprintf("http://%v/layer/v1/%v:%v", registry.Address(), imageName, c.tag)
    		t.Logf("Trying to get a wasm file from %v", wasmModuleURL)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/network.go

    	// Network name for to be used when the meshNetworks fromRegistry nor network label on pod is specified
    	// This is defined by a topology.istio.io/network label on the system namespace.
    	network network.ID
    	// Network name for the registry as specified by the MeshNetworks configmap
    	networkFromMeshConfig network.ID
    	// map of svc fqdn to partially built network gateways; the actual gateways will be built from these into networkGatewaysBySvc
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/multicluster.go

    		options := opts
    		options.ClusterID = cluster.ID
    		if !configCluster {
    			options.SyncTimeout = features.RemoteClusterTimeout
    		}
    		log.Infof("Initializing Kubernetes service registry %q", options.ClusterID)
    		options.ConfigCluster = configCluster
    		kubeRegistry := NewController(client, options)
    		kubeController := &kubeController{
    			MeshServiceController: opts.MeshServiceController,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top