Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 86 for empty (0.15 sec)

  1. manifests/profiles/empty.yaml

    # The empty profile has everything disabled
    # This is useful as a base for custom user configuration
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        base:
          enabled: false
        pilot:
          enabled: false
        ingressGateways:
        - name: istio-ingressgateway
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Sep 11 05:41:16 GMT 2020
    - 317 bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/authorization/v1beta1/generated.proto

    message ResourceAttributes {
      // Namespace is the namespace of the action being requested.  Currently, there is no distinction between no namespace and all namespaces
      // "" (empty) is defaulted for LocalSubjectAccessReviews
      // "" (empty) is empty for cluster-scoped resources
      // "" (empty) means "all" for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview
      // +optional
      optional string namespace = 1;
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 11.9K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/events/v1/generated.proto

      // reportingController is the name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.
      // This field cannot be empty for new Events.
      optional string reportingController = 4;
    
      // reportingInstance is the ID of the controller instance, e.g. `kubelet-xyzf`.
      // This field cannot be empty for new Events and it can have at most 128 characters.
      optional string reportingInstance = 5;
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/authentication/v1beta1/generated.proto

    // ExtraValue masks the value so protobuf can generate
    // +protobuf.nullable=true
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    message ExtraValue {
      // items, if empty, will result in an empty slice
    
      repeated string items = 1;
    }
    
    // SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/certificates/v1beta1/generated.proto

    }
    
    // ExtraValue masks the value so protobuf can generate
    // +protobuf.nullable=true
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    message ExtraValue {
      // items, if empty, will result in an empty slice
    
      repeated string items = 1;
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/envoy/configdump/listener_test.go

    )
    
    func TestListenerFilter_Verify(t *testing.T) {
    	tests := []struct {
    		desc       string
    		inFilter   *ListenerFilter
    		inListener *listener.Listener
    		expect     bool
    	}{
    		{
    			desc: "filter-fields-empty",
    			inFilter: &ListenerFilter{
    				Address: "",
    				Port:    0,
    				Type:    "",
    			},
    			inListener: &listener.Listener{},
    			expect:     true,
    		},
    		{
    			desc: "addrs-dont-match",
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Sep 11 15:29:30 GMT 2023
    - 4.1K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/admission/v1beta1/generated.proto

      // Name is the name of the object as presented in the request.  On a CREATE operation, the client may omit name and
      // rely on the server to generate the name.  If that is the case, this field will contain an empty string.
      // +optional
      optional string name = 5;
    
      // Namespace is the namespace associated with the request (if any).
      // +optional
      optional string namespace = 6;
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 8.1K bytes
    - Viewed (0)
  8. cni/pkg/repair/repaircontroller.go

    	// crashlooping init containers that match our criteria
    	for _, container := range pod.Status.InitContainerStatuses {
    		// Skip the container if the InitContainerName is not a match and our
    		// InitContainerName filter is non-empty.
    		if c.cfg.InitContainerName != "" && container.Name != c.cfg.InitContainerName {
    			continue
    		}
    
    		// For safety, check the containers *current* status. If the container
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Feb 10 00:31:55 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      // indicated by updateRevision.
      optional int32 updatedReplicas = 5;
    
      // currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the
      // sequence [0,currentReplicas).
      optional string currentRevision = 6;
    
      // updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence
      // [replicas-updatedReplicas,replicas)
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 36.4K bytes
    - Viewed (0)
  10. istioctl/pkg/waypoint/waypoint.go

    	makeGateway := func(forApply bool) (*gateway.Gateway, error) {
    		ns := ctx.NamespaceOrDefault(ctx.Namespace())
    		if ctx.Namespace() == "" && !forApply {
    			ns = ""
    		}
    		// If a user sets the waypoint name to an empty string, set it to the default namespace waypoint name.
    		if waypointName == "" {
    			waypointName = constants.DefaultNamespaceWaypoint
    		}
    		gw := gateway.Gateway{
    			TypeMeta: metav1.TypeMeta{
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 20:20:40 GMT 2024
    - 15K bytes
    - Viewed (0)
Back to top