Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 57 for Messages (0.12 sec)

  1. 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)
  2. 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)
  3. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

    	cmd.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 ztunnel-config log <pod-name[.namespace]>\""+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/values.yaml

          enableAnalysis: false
        # 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
    - 21K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conditions.go

    	Reason  ParentErrorReason
    	Message string
    }
    
    // ConfigError represents an invalid configuration that will be reported back to the user.
    type ConfigError struct {
    	Reason  ConfigErrorReason
    	Message string
    }
    
    type condition struct {
    	// reason defines the reason to report on success. Ignored if error is set
    	reason string
    	// message defines the message to report on success. Ignored if error is set
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/autoscaling/v2/generated.proto

      // +optional
      optional string reason = 4;
    
      // message is a human-readable explanation containing details about
      // the transition
      // +optional
      optional string message = 5;
    }
    
    // HorizontalPodAutoscalerList is a list of horizontal pod autoscaler objects.
    message HorizontalPodAutoscalerList {
      // metadata is the standard list metadata.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      // The reason for the condition's last transition.
      // +optional
      optional string reason = 4;
    
      // A human readable message indicating details about the transition.
      // +optional
      optional string message = 5;
    }
    
    // DaemonSetList is a collection of daemon sets.
    message DaemonSetList {
      // Standard list metadata.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

      // The reason for the condition's last transition.
      // +optional
      optional string reason = 4;
    
      // A human readable message indicating details about the transition.
      // +optional
      optional string message = 5;
    }
    
    // DaemonSetList is a collection of daemon sets.
    message DaemonSetList {
      // Standard list metadata.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/authorization/v1/generated.proto

    message ExtraValue {
      // items, if empty, will result in an empty slice
    
      repeated string items = 1;
    }
    
    // LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace.
    // Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions
    // checking.
    message LocalSubjectAccessReview {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/networking/v1/generated.proto

    }
    
    // IngressLoadBalancerStatus represents the status of a load-balancer.
    message IngressLoadBalancerStatus {
      // ingress is a list containing ingress points for the load-balancer.
      // +optional
      repeated IngressLoadBalancerIngress ingress = 1;
    }
    
    // IngressPortStatus represents the error condition of a service port
    message IngressPortStatus {
      // port is the port number of the ingress port.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.2K bytes
    - Viewed (0)
Back to top