Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for pidsLimit (0.18 sec)

  1. pkg/kubelet/cm/types.go

    	CPUQuota *int64
    	// CPU quota period.
    	CPUPeriod *uint64
    	// HugePageLimit map from page size (in bytes) to limit (in bytes)
    	HugePageLimit map[int64]int64
    	// Maximum number of pids
    	PidsLimit *int64
    	// Unified for cgroup v2
    	Unified map[string]string
    }
    
    // CgroupName is the abstract name of a cgroup prior to any driver specific conversion.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/pidlimit/pidlimit.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package pidlimit
    
    import (
    	"k8s.io/api/core/v1"
    )
    
    const (
    	// PIDs is the (internal) name for this resource
    	PIDs v1.ResourceName = "pid"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 13 19:56:17 UTC 2019
    - 713 bytes
    - Viewed (0)
  3. pkg/kubelet/stats/pidlimit/pidlimit_unsupported.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package pidlimit
    
    import (
    	statsapi "k8s.io/kubelet/pkg/apis/stats/v1alpha1"
    )
    
    // Stats provides basic information about max and current process count
    func Stats() (*statsapi.RlimitStats, error) {
    	return nil, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 825 bytes
    - Viewed (0)
  4. pkg/kubelet/stats/pidlimit/pidlimit_linux.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package pidlimit
    
    import (
    	"fmt"
    	"os"
    	"strconv"
    	"strings"
    	"syscall"
    	"time"
    
    	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	statsapi "k8s.io/kubelet/pkg/apis/stats/v1alpha1"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:24:29 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. pkg/kubelet/stats/provider.go

    	"k8s.io/kubernetes/pkg/kubelet/cadvisor"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    	"k8s.io/kubernetes/pkg/kubelet/server/stats"
    	"k8s.io/kubernetes/pkg/kubelet/stats/pidlimit"
    	"k8s.io/kubernetes/pkg/kubelet/status"
    	kubetypes "k8s.io/kubernetes/pkg/kubelet/types"
    	"k8s.io/utils/ptr"
    )
    
    // PodManager is the subset of methods the manager needs to observe the actual state of the kubelet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 13:56:22 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top