Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 66 for registry_ (0.18 sec)

  1. 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)
  2. 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)
  3. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			want:  nil,
    		},
    		{
    			name:  "proxy with IP not in the registry",
    			proxy: &model.Proxy{Metadata: &model.NodeMetadata{}, IPAddresses: []string{"1.1.1.1"}},
    			want:  nil,
    		},
    		{
    			name:  "proxy with IP from the registry, 1 matching WE, but no matching Service",
    			proxy: &model.Proxy{Metadata: &model.NodeMetadata{}, IPAddresses: []string{"4.4.4.41"}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pilot/pkg/serviceregistry/serviceregistry_test.go

    	go kc.Run(stop)
    	go se.Run(stop)
    
    	return configController, client.Kube(), xdsUpdater
    }
    
    // TestWorkloadInstances is effectively an integration test of composing the Kubernetes service registry with the
    // external service registry, which have cross-references by workload instances.
    func TestWorkloadInstances(t *testing.T) {
    	istiotest.SetForTest(t, &features.WorkloadEntryHealthChecks, true)
    	port := &networking.ServicePort{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  7. pkg/config/validation/agent/validation.go

    				errs = multierror.Append(errs, err)
    			}
    		case *meshconfig.Network_NetworkEndpoints_FromRegistry:
    			if ok := labels.IsDNS1123Label(e.FromRegistry); !ok {
    				errs = multierror.Append(errs, fmt.Errorf("invalid registry name: %v", e.FromRegistry))
    			}
    		}
    	}
    	for _, n := range network.Gateways {
    		switch g := n.Gw.(type) {
    		case *meshconfig.Network_IstioNetworkGateway_RegistryServiceName:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  8. pkg/config/validation/agent/validation_test.go

    									Address: "1nv@lidhostname",
    								},
    								Port: 80,
    							},
    						},
    					},
    				},
    			},
    			valid: false,
    		},
    		{
    			name: "Invalid registry name",
    			mn: &meshconfig.MeshNetworks{
    				Networks: map[string]*meshconfig.Network{
    					"n1": {
    						Endpoints: []*meshconfig.Network_NetworkEndpoints{
    							{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  9. 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)
  10. pilot/pkg/networking/core/fake.go

    	se := serviceentry.NewController(
    		configController,
    		xdsUpdater,
    		env.Watcher,
    		serviceentry.WithClusterID(opts.ClusterID))
    	// TODO allow passing in registry, for k8s, mem reigstry
    	serviceDiscovery.AddRegistry(se)
    	msd := memregistry.NewServiceDiscovery(opts.Services...)
    	msd.XdsUpdater = xdsUpdater
    	for _, instance := range opts.Instances {
    		msd.AddInstance(instance)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top