Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 79 for runtimeFlags (0.2 sec)

  1. pkg/kubelet/metrics/metrics.go

    	// Broken down by RuntimeClass.Handler.
    	RunPodSandboxDuration = metrics.NewHistogramVec(
    		&metrics.HistogramOpts{
    			Subsystem: KubeletSubsystem,
    			Name:      RunPodSandboxDurationKey,
    			Help:      "Duration in seconds of the run_podsandbox operations. Broken down by RuntimeClass.Handler.",
    			// Use DefBuckets for now, will customize the buckets if necessary.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/util/util.go

    			return runtimeapi.NamespaceMode_POD
    		}
    	}
    	// Note that PID does not default to the zero value for v1.Pod
    	return runtimeapi.NamespaceMode_CONTAINER
    }
    
    // LookupRuntimeHandler is implemented by *runtimeclass.Manager.
    type RuntimeHandlerResolver interface {
    	LookupRuntimeHandler(runtimeClassName *string) (string, error)
    }
    
    // namespacesForPod returns the runtimeapi.NamespaceOption for a given pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:14:48 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. api/discovery/aggregated_v2.json

                  "resource": "runtimeclasses",
                  "responseKind": {
                    "group": "",
                    "kind": "RuntimeClass",
                    "version": ""
                  },
                  "scope": "Cluster",
                  "singularResource": "runtimeclass",
                  "verbs": [
                    "create",
                    "delete",
                    "deletecollection",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. api/discovery/aggregated_v2beta1.json

                  "resource": "runtimeclasses",
                  "responseKind": {
                    "group": "",
                    "kind": "RuntimeClass",
                    "version": ""
                  },
                  "scope": "Cluster",
                  "singularResource": "runtimeclass",
                  "verbs": [
                    "create",
                    "delete",
                    "deletecollection",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. tools/packaging/common/envoy_bootstrap.json

          {{- end }}
        },
        "metadata": {{ .meta_json_str }}
      },
      "layered_runtime": {
          "layers": [
              {
                "name": "global config",
                "static_layer": {{ .runtime_flags }}
              },
              {
                  "name": "admin",
                  "admin_layer": {}
              }
          ]
      },
      "bootstrap_extensions": [
        {{- if .metadata_discovery }}
        {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	internalLifecycle cm.InternalContainerLifecycle
    
    	// Manage container logs.
    	logManager logs.ContainerLogManager
    
    	// Manage RuntimeClass resources.
    	runtimeClassManager *runtimeclass.Manager
    
    	// Cache last per-container error message to reduce log spam
    	logReduction *logreduction.LogReduction
    
    	// PodState provider instance
    	podStateProvider podStateProvider
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  7. pkg/kubelet/userns/userns_manager.go

    	if handlerSupportsUserns, err := m.kl.HandlerSupportsUserNamespaces(runtimeHandler); err != nil {
    		return nil, err
    	} else if !handlerSupportsUserns {
    		return nil, fmt.Errorf("RuntimeClass handler %q does not support user namespaces", runtimeHandler)
    	}
    
    	m.lock.Lock()
    	defer m.lock.Unlock()
    
    	content, err := m.readMappingsFromFile(pod.UID)
    	if err != nil && err != utilstore.ErrKeyNotFound {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. cluster/gce/config-default.sh

    ADMISSION_CONTROL=NamespaceLifecycle,LimitRanger,ServiceAccount,DefaultStorageClass,PersistentVolumeClaimResize,DefaultTolerationSeconds,NodeRestriction,Priority,StorageObjectInUseProtection,RuntimeClass
    
    # MutatingAdmissionWebhook should be the last controller that modifies the
    # request object, otherwise users will be confused if the mutating webhooks'
    # modification is overwritten.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

    "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  10. cluster/gce/config-test.sh

      ADMISSION_CONTROL='NamespaceLifecycle,LimitRanger,ServiceAccount,DefaultStorageClass,DefaultTolerationSeconds,NodeRestriction,Priority,StorageObjectInUseProtection,PersistentVolumeClaimResize,RuntimeClass'
      # ResourceQuota must come last, or a creation is recorded, but the pod may be forbidden.
      ADMISSION_CONTROL="${ADMISSION_CONTROL},MutatingAdmissionWebhook,ValidatingAdmissionWebhook,ResourceQuota"
    else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
Back to top