Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 132 for Messages (0.11 sec)

  1. 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)
  2. common-protos/k8s.io/api/admission/v1/generated.proto

      // the admission webhook to add additional context to the audit log for this request.
      // +optional
      map<string, string> auditAnnotations = 6;
    
      // warnings is a list of warning messages to return to the requesting API client.
      // Warning messages describe a problem the client making the API request should correct or be aware of.
      // Limit warnings to 120 characters if possible.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/admission/v1beta1/generated.proto

      // the admission webhook to add additional context to the audit log for this request.
      // +optional
      map<string, string> auditAnnotations = 6;
    
      // warnings is a list of warning messages to return to the requesting API client.
      // Warning messages describe a problem the client making the API request should correct or be aware of.
      // Limit warnings to 120 characters if possible.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. 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)
  5. pkg/test/framework/components/echo/kube/workload.go

    		w.sidecar = nil
    	}
    	return err
    }
    
    func (w *workload) checkDeprecation() error {
    	logs, err := w.sidecar.Logs()
    	if err != nil {
    		return fmt.Errorf("could not get sidecar logs to inspect for deprecation messages: %v", err)
    	}
    
    	info := fmt.Sprintf("pod: %s/%s", w.pod.Namespace, w.pod.Name)
    	return errors.FindDeprecatedMessagesInEnvoyLog(logs, info)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 19:46:28 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/apidiscovery/v2beta1/generated.proto

      // singularResource is the singular name of the resource.  This allows clients to handle plural and singular opaquely.
      // For many clients the singular form of the resource will be more understandable to users reading messages and should be used when integrating the name of the resource into a sentence.
      // The command line tool kubectl, for example, allows use of the singular resource name in place of plurals.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top