Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 186 for rulesv4 (0.31 sec)

  1. tests/integration/pilot/gateway_test.go

    spec:
      parentRefs:
      - name: gateway
      hostnames: ["bar.example.com"]
      rules:
      - backendRefs:
        - name: b
          port: 80
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http-2
    spec:
      parentRefs:
      - name: gateway
      hostnames: ["foo.example.com"]
      rules:
      - backendRefs:
        - name: d
          port: 80
    `).ApplyOrFail(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/networking/v1/types.go

    	// +optional
    	TLS []IngressTLS `json:"tls,omitempty" protobuf:"bytes,2,rep,name=tls"`
    
    	// rules is a list of host rules used to configure the Ingress. If unspecified,
    	// or no rule matches, all traffic is sent to the default backend.
    	// +listType=atomic
    	// +optional
    	Rules []IngressRule `json:"rules,omitempty" protobuf:"bytes,3,rep,name=rules"`
    }
    
    // IngressTLS describes the transport layer security associated with an ingress.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/postupgrade.go

    		errs = append(errs, errors.Wrap(err, "error uploading crisocket"))
    	}
    
    	// Create RBAC rules that makes the bootstrap tokens able to get nodes
    	if err := nodebootstraptoken.AllowBoostrapTokensToGetNodes(client); err != nil {
    		errs = append(errs, err)
    	}
    
    	// Create/update RBAC rules that makes the bootstrap tokens able to post CSRs
    	if err := nodebootstraptoken.AllowBootstrapTokensToPostCSRs(client); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/batch/v1/types.go

    	// Additionally, these rules are evaluated in order; Once the Job meets one of the rules,
    	// other rules are ignored. At most 20 elements are allowed.
    	// +listType=atomic
    	Rules []SuccessPolicyRule `json:"rules" protobuf:"bytes,1,opt,name=rules"`
    }
    
    // SuccessPolicyRule describes rule for declaring a Job as succeeded.
    // Each rule must have at least one of the "succeededIndexes" or "succeededCount" specified.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation.go

    // of the Structural schema and returns a custom resource validator that contains nested
    // validators for all items, properties and additionalProperties that transitively contain validator rules.
    // Returns nil if there are no validator rules in the Structural schema. May return a validator containing only errors.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/VariantFilesMetadataRulesTest.groovy

            }
            defaultVariant.addFile("producer-1.0.jar", "producer-1.0.jar")
            metadata
        }
    
        def "variant file metadata rules are evaluated once and lazily for #metadataType metadata"() {
            given:
            def rule = Mock(Action)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. common/config/.golangci.yml

        line-length: 160
        # tab width in spaces. Default to 1.
        tab-width: 1
      revive:
        ignore-generated-header: false
        severity: "warning"
        confidence: 0.0
        rules:
          - name: blank-imports
          - name: context-keys-type
          - name: time-naming
          - name: var-declaration
          - name: unexported-return
          - name: errorf
          - name: context-as-argument
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"rules": "rules represents the list of alternative rules for the declaring the Jobs as successful before `.status.succeeded >= .spec.completions`. Once any of the rules are met, the \"SucceededCriteriaMet\" condition is added, and the lingering pods are removed. The terminal state for such a Job has the \"Complete\" condition. Additionally, these rules are evaluated in order; Once the Job meets one of the rules, other rules are...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authorization/v1/types.go

    	// Namespace to evaluate rules for. Required.
    	Namespace string `json:"namespace,omitempty" protobuf:"bytes,1,opt,name=namespace"`
    }
    
    // SubjectRulesReviewStatus contains the result of a rules check. This check can be incomplete depending on
    // the set of authorizers the server is configured with and any errors experienced during evaluation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/batch/v1/generated.proto

    message SuccessPolicy {
      // rules represents the list of alternative rules for the declaring the Jobs
      // as successful before `.status.succeeded >= .spec.completions`. Once any of the rules are met,
      // the "SucceededCriteriaMet" condition is added, and the lingering pods are removed.
      // The terminal state for such a Job has the "Complete" condition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
Back to top