Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 103 for Messages (0.16 sec)

  1. pilot/pkg/networking/grpcgen/grpcgen.go

    // default prefix, and is expects just the route for one host.
    // handleAck will detect if the message is an ACK or NACK, and update/log/count
    // using the generic structures. "Classical" CDS/LDS/RDS/EDS use separate logic -
    // this is used for the API-based LDS and generic messages.
    
    var log = istiolog.RegisterScope("grpcgen", "xDS Generator for Proxyless gRPC")
    
    type GrpcConfigGenerator struct{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/schema/validation.go

    	sresource "istio.io/istio/pkg/config/schema/resource"
    	"istio.io/istio/pkg/config/validation"
    )
    
    // ValidationAnalyzer runs schema validation as an analyzer and reports any violations as messages
    type ValidationAnalyzer struct {
    	s sresource.Schema
    }
    
    var _ analysis.Analyzer = &ValidationAnalyzer{}
    
    func CollectionValidationAnalyzer(s sresource.Schema) analysis.Analyzer {
    	return &ValidationAnalyzer{s: s}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 08 07:38:28 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. operator/pkg/helmreconciler/reconciler.go

    	}
    	relevantMessages := filterOutBasedOnResources(res.Messages, parsedK8sObjects)
    	if len(relevantMessages) > 0 {
    		o, err := formatting.Print(relevantMessages, formatting.LogFormat, false)
    		if err != nil {
    			return err
    		}
    		return fmt.Errorf("creating default tag would conflict:\n%v", o)
    	}
    	return nil
    }
    
    func filterOutBasedOnResources(ms diag.Messages, resources object.K8sObjects) diag.Messages {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. tests/integration/security/file_mounted_certs/main_test.go

          # deployed test services changes on each run due to a randomly generated namespace suffixes.
          # Turning the XDS-Auth ON will result in the error messages like:
          # Unauthorized XDS: 10.1.0.159:41960 with identity [spiffe://cluster.local/ns/mounted-certs/sa/client client.mounted-certs.svc]:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. pkg/istio-agent/xds_proxy.go

    				Code:    int32(codes.Internal),
    				Message: healthEvent.UnhealthyMessage,
    			}
    		}
    		proxy.sendHealthCheckRequest(req)
    		deltaReq := &discovery.DeltaDiscoveryRequest{TypeUrl: model.HealthInfoType}
    		if !healthEvent.Healthy {
    			deltaReq.ErrorDetail = &google_rpc.Status{
    				Code:    int32(codes.Internal),
    				Message: healthEvent.UnhealthyMessage,
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. cni/pkg/cmd/root.go

    		if cfg.InstallConfig.AmbientEnabled {
    			// Start ambient controller
    
    			// node agent will spawn a goroutine and watch the K8S API for events,
    			// as well as listen for messages from the CNI binary.
    			log.Info("Starting ambient node agent with inpod redirect mode")
    			ambientAgent, err := nodeagent.NewServer(ctx, watchServerReady, cfg.InstallConfig.CNIEventAddress,
    				nodeagent.AmbientArgs{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. pkg/config/schema/resource/schema.go

    	// Proto refers to the protobuf message type name corresponding to the type
    	Proto string
    
    	StatusProto string
    
    	// ReflectType is the type of the go struct
    	ReflectType reflect.Type
    
    	// StatusType is the type of the associated status.
    	StatusType reflect.Type
    
    	// ProtoPackage refers to the name of golang package for the protobuf message.
    	ProtoPackage string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  8. tests/integration/pilot/analyze_test.go

    			// If we look at one namespace, we should successfully run and see one message (and not anything from any other namespace)
    			output, _ := istioctlSafe(t, istioCtl, ns1.Name(), true)
    			expectMessages(t, g, output, msg.ReferencedResourceNotFound, msg.ConflictingGateways)
    
    			// If we use --all-namespaces, we should successfully run and see a message from each namespace
    			output, _ = istioctlSafe(t, istioCtl, "", true, "--all-namespaces")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. istioctl/pkg/tag/tag.go

    		return err
    	}
    	sa.AddRunningKubeSourceWithRevision(k, revision, false)
    	res, err := sa.Analyze(make(chan struct{}))
    	if err != nil {
    		return err
    	}
    	relevantMessages := diag.Messages{}
    	for _, msg := range res.Messages.FilterOutLowerThan(diag.Error) {
    		if msg.Resource.Metadata.FullName.Name == resource.LocalName(name) {
    			relevantMessages = append(relevantMessages, msg)
    		}
    	}
    	if len(relevantMessages) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. istioctl/pkg/kubeinject/kubeinject.go

    			}
    			return retval
    		},
    		PersistentPreRunE: func(c *cobra.Command, args []string) error {
    			// istioctl kube-inject is typically redirected to a .yaml file;
    			// the default for log messages should be stderr, not stdout
    			root := c.Root()
    			if root != nil {
    				_ = c.Root().PersistentFlags().Set("log_target", "stderr")
    			}
    			if c.Parent() != nil && c.Parent().PersistentPreRunE != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 21.6K bytes
    - Viewed (0)
Back to top