Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 54 for registry_ (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. manifests/charts/istio-control/istio-discovery/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
    
        # Enabled by default in master for maximising testing.
        istiod:
          enableAnalysis: false
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/serviceentry/conversion.go

    			Labels:         labels,
    			TLSMode:        tlsMode,
    			ServiceAccount: sa,
    			// Workload entry config name is used as workload name, which will appear in metric label.
    			// After VM auto registry is introduced, workload group annotation should be used for workload name.
    			WorkloadName: configKey.name,
    			Namespace:    configKey.namespace,
    		},
    		Service:     service,
    		ServicePort: convertPort(servicePort),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. pkg/config/analysis/msg/messages.yaml

          - name: problem
            type: string
    
      - name: "UnknownMeshNetworksServiceRegistry"
        code: IST0126
        level: Error
        description: "A service registry in Mesh Networks is unknown"
        template: "Unknown service registry %s in network %s"
        args:
          - name: serviceregistry
            type: string
          - name: network
            type: string
    
      - name: "NoMatchingWorkloadsFound"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/configcontroller.go

    			} else {
    				log.Warnf("Not implemented, ignore: %v", configSource.Address)
    				// TODO: handle k8s:// scheme for remote cluster. Use same mechanism as service registry,
    				// using the cluster name as key to match a secret.
    			}
    		default:
    			log.Warnf("Ignoring unsupported config source: %v", configSource.Address)
    		}
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. pilot/pkg/bootstrap/server.go

    		}
    		if jwtAuthn == nil {
    			return nil, fmt.Errorf("JWT authenticator is nil")
    		}
    		authenticators = append(authenticators, jwtAuthn)
    	}
    	// The k8s JWT authenticator requires the multicluster registry to be initialized,
    	// so we build it later.
    	if s.kubeClient != nil {
    		authenticators = append(authenticators,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top