Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for registry_ (0.19 sec)

  1. prow/config/metrics/metrics.yaml

            - --kubelet-preferred-address-types=InternalIP,ExternalIP,Hostname
            - --kubelet-use-node-status-port
            - --metric-resolution=15s
            - --kubelet-insecure-tls
            image: registry.k8s.io/metrics-server/metrics-server:v0.7.1
            imagePullPolicy: IfNotPresent
            livenessProbe:
              failureThreshold: 3
              httpGet:
                path: /livez
                port: https
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 20:51:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. tests/integration/telemetry/api/customize_metrics_test.go

    			}
    		})
    }
    
    func setupWasmExtension(t framework.TestContext) {
    	proxySHA := "359dcd3a19f109c50e97517fe6b1e2676e870c4d"
    	attrGenImageURL := fmt.Sprintf("oci://%v/istio-testing/wasm/attributegen:%v", registry.Address(), proxySHA)
    	args := map[string]any{
    		"AttributeGenURL": attrGenImageURL,
    	}
    	t.ConfigIstio().
    		EvalFile(apps.Namespace.Name(), args, "testdata/attributegen.yaml").
    		ApplyOrFail(t)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. operator/cmd/operator/server.go

    	}
    
    	log.Infof("Creating operator metrics exporter available at %s", metricsOptions.BindAddress)
    	registry := ctrlmetrics.Registry.(*prometheus.Registry)
    	wrapped := prometheus.WrapRegistererWithPrefix("istio_install_operator_", registry)
    
    	if _, err := monitoring.RegisterPrometheusExporter(wrapped, registry); err != nil {
    		log.Warnf("Error while building exporter: %v", err)
    	}
    
    	log.Info("Registering Components.")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 30 21:09:08 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. pkg/dns/server/name_table.go

    		} else if provider.ID(ni.Registry) != provider.Kubernetes {
    			// 2 possible cases:
    			// 1. If the SE has multiple addresses(vips) specified, merge the ips
    			// 2. If the previous SE is a decorator of the k8s service, give precedence to the k8s service
    			if svc.Attributes.ServiceRegistry == provider.Kubernetes {
    				ni.Ips = addressList
    				ni.Registry = string(provider.Kubernetes)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. tests/integration/telemetry/api/setup_test.go

    		return
    	}
    
    	args := map[string]any{
    		"DockerConfigJson": base64.StdEncoding.EncodeToString(
    			[]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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. releasenotes/notes/49364.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 49364
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 01:20:21 UTC 2024
    - 224 bytes
    - Viewed (0)
  7. samples/ambient-argo/tag-chart/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
    
      istiod:
        enableAnalysis: false
    
      configValidation: true
      externalIstiod: false
      remotePilotAddress: ""
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top