Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 99 for Nodes (0.05 sec)

  1. pkg/controlplane/apiserver/config.go

    	"k8s.io/kubernetes/pkg/controlplane/controller/clusterauthenticationtrust"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/kubeapiserver"
    	"k8s.io/kubernetes/pkg/kubeapiserver/authorizer/modes"
    	rbacrest "k8s.io/kubernetes/pkg/registry/rbac/rest"
    	"k8s.io/kubernetes/pkg/serviceaccount"
    )
    
    // Config defines configuration for the master
    type Config struct {
    	Generic *genericapiserver.Config
    	Extra
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.28.md

        - [CVE-2023-3955: Insufficient input sanitization on Windows nodes leads to privilege escalation](#cve-2023-3955-insufficient-input-sanitization-on-windows-nodes-leads-to-privilege-escalation)
        - [CVE-2023-3676: Insufficient input sanitization on Windows nodes leads to privilege escalation](#cve-2023-3676-insufficient-input-sanitization-on-windows-nodes-leads-to-privilege-escalation)
      - [Changes by Kind](#changes-by-kind-10)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  3. pkg/features/kube_features.go

    	ClusterTrustBundleProjection featuregate.Feature = "ClusterTrustBundleProjection"
    
    	// owner: @szuecs
    	// alpha: v1.12
    	//
    	// Enable nodes to change CPUCFSQuotaPeriod
    	CPUCFSQuotaPeriod featuregate.Feature = "CustomCPUCFSQuotaPeriod"
    
    	// owner: @ConnorDoyle, @fromanirh (only for GA graduation)
    	// alpha: v1.8
    	// beta: v1.10
    	// GA: v1.26
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.27.md

        - [CVE-2023-3955: Insufficient input sanitization on Windows nodes leads to privilege escalation](#cve-2023-3955-insufficient-input-sanitization-on-windows-nodes-leads-to-privilege-escalation)
        - [CVE-2023-3676: Insufficient input sanitization on Windows nodes leads to privilege escalation](#cve-2023-3676-insufficient-input-sanitization-on-windows-nodes-leads-to-privilege-escalation)
      - [Changes by Kind](#changes-by-kind-10)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.31.md

    - Improved scheduling performance when many nodes, and prefilter returns 1-2 nodes (e.g. daemonset)
      
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  6. cni/pkg/cmd/root.go

    		"The value portion of the label which will be set by the race repair if label pods is true")
    	registerStringParameter(constants.RepairNodeName, "", "The name of the managed node (will manage all nodes if unset)")
    	registerStringParameter(constants.RepairSidecarAnnotation, "sidecar.istio.io/status",
    		"An annotation key that indicates this pod contains an istio sidecar. All pods without this annotation will be ignored."+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. pilot/pkg/features/pilot.go

    	).Get()
    
    	EnableNodeUntaintControllers = env.Register(
    		"PILOT_ENABLE_NODE_UNTAINT_CONTROLLERS",
    		false,
    		"If enabled, controller that untaints nodes with cni pods ready will run. This should be enabled if you disabled ambient init containers.").Get()
    
    	// EnableUnsafeAssertions enables runtime checks to test assertions in our code. This should never be enabled in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. cmd/storage-datatypes.go

    }
    
    const (
    	checkPartUnknown int = iota
    
    	// Changing the order can cause a data loss
    	// when running two nodes with incompatible versions
    	checkPartSuccess
    	checkPartDiskNotFound
    	checkPartVolumeNotFound
    	checkPartFileNotFound
    	checkPartFileCorrupt
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. cmd/metrics-v2.go

    		Help:      "Total number of bytes sent to the other peer nodes",
    		Type:      counterMetric,
    	}
    }
    
    func getInterNodeReceivedBytesMD() MetricDescription {
    	return MetricDescription{
    		Namespace: interNodeMetricNamespace,
    		Subsystem: trafficSubsystem,
    		Name:      receivedBytes,
    		Help:      "Total number of bytes received from other peer nodes",
    		Type:      counterMetric,
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/liveness/plive.go

    	livenessMap Map
    }
    
    // Constructs a new liveness structure used to hold the global state of the
    // liveness computation. The cfg argument is a slice of *BasicBlocks and the
    // vars argument is a slice of *Nodes.
    func newliveness(fn *ir.Func, f *ssa.Func, vars []*ir.Name, idx map[*ir.Name]int32, stkptrsize int64) *liveness {
    	lv := &liveness{
    		fn:         fn,
    		f:          f,
    		vars:       vars,
    		idx:        idx,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top