Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 155 for Messages (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. architecture/networking/pilot.md

    Note that clients can actually send three types of messages - requests, ACKs of previous pushes, and NACKs of previous pushes. Unfortunately, these are not clearly distinguished in the API, so there is some logic to split these out (`shouldRespond`).
    
    #### Pushes
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-ingress/values.yaml

        #   0 - Never scheduled
        #   1 - Least preferred
        #   2 - No preference
        #   3 - Most preferred
        arch: {}
    
        # 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: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. operator/pkg/translate/translate_value.go

    		// set component enablement
    		if err := tpath.WriteNode(root, outCP, enabled); err != nil {
    			return err
    		}
    	}
    
    	return nil
    }
    
    // WarningForGatewayK8SSettings creates deprecated warning messages
    // when user try to set kubernetes settings for gateways via values api.
    func (t *ReverseTranslator) WarningForGatewayK8SSettings(valuesOverlay string) (string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 03:52:24 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    	}
    
    	// TODO Check naming and redirection logic
    	if (err != nil || len(stderr.String()) != 0) && !ignoreErrors {
    		stderrStr := stderr.String()
    
    		// Transform to xtables-specific error messages with more useful and actionable hints.
    		if err != nil {
    			stderrStr = transformToXTablesErrorMessage(stderrStr, err)
    		}
    
    		log.Errorf("Command error output: %v", stderrStr)
    	}
    
    	return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K 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. pkg/workloadapi/workload.pb.go

    // to answer a question like "what is this IP address", similar to a reverse DNS lookup.
    //
    // Each resource will have a mesh-wide unique opaque name, defined in the individual messages.
    // In addition, to support lookup by IP address, they will have *alias* names for each IP the resource represents.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
Back to top