Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for Messages (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. cni/pkg/nodeagent/ztunnelserver.go

    			}
    		}()
    	}
    }
    
    // ZDS protocol is very simple, for every message sent, and ack is sent.
    // the ack only has temporal correlation (i.e. it is the first and only ack msg after the message was sent)
    // All this to say, that we want to make sure that message to ztunnel are sent from a single goroutine
    // so we don't mix messages and acks.
    // nolint: unparam
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. pkg/security/security.go

    }
    
    // authenticationManager orchestrates all authenticators to perform authentication.
    type authenticationManager struct {
    	Authenticators []Authenticator
    	// authFailMsgs contains list of messages that authenticator wants to record - mainly used for logging.
    	authFailMsgs []string
    }
    
    // Authenticate loops through all the configured Authenticators and returns if one of the authenticator succeeds.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/values.yaml

        # To output all istio components logs in json format by adding --log_as_json argument to each container argument
        logAsJson: false
    
        # Comma-separated minimum per-scope logging level of messages to output, in the form of <scope>:<level>,<scope>:<level>
        # The control plane has different scopes depending on component, but can configure default log level across all components
    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. pkg/istio-agent/xds_proxy_delta.go

    // Every time envoy makes a fresh connection to the agent, we reestablish a new connection to the upstream xds
    // This ensures that a new connection between istiod and agent doesn't end up consuming pending messages from envoy
    // as the new connection may not go to the same istiod. Vice versa case also applies.
    func (p *XdsProxy) DeltaAggregatedResources(downstream DeltaDiscoveryStream) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/crdclient/client.go

    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/queue"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/util/sets"
    )
    
    var scope = log.RegisterScope("kube", "Kubernetes client messages")
    
    // Client is a client for Istio CRDs, implementing config store cache
    // This is used for CRUD operators on Istio configuration, as well as handling of events on config changes
    type Client struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. pkg/workloadapi/workload.proto

      UNHEALTHY = 1;
    }
    
    enum WorkloadType {
      DEPLOYMENT = 0;
      CRONJOB = 1;
      POD = 2;
      JOB = 3;
    }
    
    // PorList represents the ports for a service
    message PortList {
      repeated Port ports = 1;
    }
    
    message Port {
      // Port the service is reached at (frontend).
      uint32 service_port = 1;
      // Port the service forwards to (backend).
      uint32 target_port = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. istioctl/pkg/proxyconfig/proxyconfig.go

    	logCmd.PersistentFlags().StringVarP(&labelSelector, "selector", "l", "", "Label selector")
    	logCmd.PersistentFlags().StringVar(&loggerLevelString, "level", loggerLevelString,
    		fmt.Sprintf("Comma-separated minimum per-logger level of messages to output, in the form of"+
    			" [<logger>:]<level>,[<logger>:]<level>,... or <level> to change all active loggers, "+
    			"where logger components can be listed by running \"istioctl proxy-config log <pod-name[.namespace]>\""+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
Back to top