Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 69 for rulesv6 (0.21 sec)

  1. cmd/batch-expire.go

    			}
    		}
    		return err
    	}
    
    	if len(r.Rules) > maxBatchRules {
    		return batchExpireJobError{
    			Code:           "InvalidArgument",
    			Description:    "Too many rules. Batch expire job can't have more than 100 rules",
    			HTTPStatusCode: http.StatusBadRequest,
    		}
    	}
    
    	for _, rule := range r.Rules {
    		if err := rule.Validate(); err != nil {
    			return batchExpireJobError{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. pkg/controller/job/success_policy.go

    	if !feature.DefaultFeatureGate.Enabled(features.JobSuccessPolicy) || successPolicy == nil || len(succeededIndexes) == 0 {
    		return "", false
    	}
    
    	rulesMatchedMsg := "Matched rules at index"
    	for index, rule := range successPolicy.Rules {
    		if rule.SucceededIndexes != nil {
    			requiredIndexes := parseIndexesFromString(logger, *rule.SucceededIndexes, int(completions))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier.go

    	proxier.mu.Lock()
    	defer proxier.mu.Unlock()
    
    	// don't sync rules till we've received services and endpoints
    	if !proxier.isInitialized() {
    		proxier.logger.V(2).Info("Not syncing nftables until Services and Endpoints have been received from master")
    		return
    	}
    
    	//
    	// Below this point we will not return until we try to write the nftables rules.
    	//
    
    	// Keep track of how long syncs take.
    	start := time.Now()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller_test.go

    						Status:  v1.ConditionTrue,
    						Reason:  batch.JobReasonSuccessPolicy,
    						Message: "Matched rules at index 0",
    					},
    					{
    						Type:    batch.JobComplete,
    						Status:  v1.ConditionTrue,
    						Reason:  batch.JobReasonSuccessPolicy,
    						Message: "Matched rules at index 0",
    					},
    				},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

      fi
    }
    
    function delete-all-firewall-rules() {
      local -a fws
      kube::util::read-array fws < <(gcloud compute firewall-rules list --project "${NETWORK_PROJECT}" --filter="network=${NETWORK}" --format="value(name)")
      if (( "${#fws[@]}" > 0 )); then
        echo "Deleting firewall rules remaining in network ${NETWORK}: ${fws[*]}"
        delete-firewall-rules "${fws[@]}"
      else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/ztunnel/configdump/api.go

    type ZtunnelPolicy struct {
    	Name      string             `json:"name"`
    	Namespace string             `json:"namespace"`
    	Scope     string             `json:"scope"`
    	Action    string             `json:"action"`
    	Rules     [][][]*PolicyMatch `json:"rules"`
    }
    
    type ZtunnelDump struct {
    	Workloads     []*ZtunnelWorkload       `json:"workloads"`
    	Services      []*ZtunnelService        `json:"services"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. cmd/kube-proxy/app/server_linux.go

    		logger.Info("Defaulting to no-op detect-local")
    	}
    
    	return localDetectors
    }
    
    // platformCleanup removes stale kube-proxy rules that can be safely removed. If
    // cleanupAndExit is true, it will attempt to remove rules from all known kube-proxy
    // modes. If it is false, it will only remove rules that are definitely not in use by the
    // currently-configured mode.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. manifests/addons/values-grafana.yaml

    # Avoid creating a bunch of RBAC rules for features we are not enabling
    rbac:
      create: false
      pspEnabled: false
    
    # Disable test pods
    testFramework:
      enabled: false
    
    podLabels:
      sidecar.istio.io/inject: "false"
    
    # Demo only, so we will have no authentication
    admin:
      existingSecret: ""
    ldap:
      existingSecret: true
    env:
      GF_SECURITY_ADMIN_USER: "admin"
      GF_SECURITY_ADMIN_PASSWORD: "admin"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/api/NonNullApi.java

     *
     * All parameter and return types are assumed to be {@link Nonnull} unless specifically marked as {@link Nullable}.
     *
     * All types of an annotated package inherit the package rule.
     * Subpackages do not inherit nullability rules and must be annotated.
     *
     * @since 4.2
     */
    @Target({ElementType.TYPE, ElementType.PACKAGE})
    @org.jetbrains.annotations.NotNull
    @Nonnull
    @TypeQualifierDefault({ElementType.METHOD, ElementType.PARAMETER})
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. samples/addons/prometheus.yaml

        global:
          evaluation_interval: 1m
          scrape_interval: 15s
          scrape_timeout: 10s
        rule_files:
        - /etc/config/recording_rules.yml
        - /etc/config/alerting_rules.yml
        - /etc/config/rules
        - /etc/config/alerts
        scrape_configs:
        - job_name: prometheus
          static_configs:
          - targets:
            - localhost:9090
        - bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top