Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 931 for kubelet_ (0.1 sec)

  1. pkg/kubelet/apis/config/validation/validation_others.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package validation
    
    import (
    	kubeletconfig "k8s.io/kubernetes/pkg/kubelet/apis/config"
    )
    
    // validateKubeletOSConfiguration validates os specific kubelet configuration and returns an error if it is invalid.
    func validateKubeletOSConfiguration(kc *kubeletconfig.KubeletConfiguration) error {
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 917 bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    // safely (prevents more than one operation from being triggered on the same
    // volume)
    //
    // mounter - mounter passed in from kubelet, passed down unmount path
    //
    // hostutil - hostutil passed in from kubelet
    //
    // volumePluginMgr - volume plugin manager passed from kubelet
    func NewReconciler(
    	kubeClient clientset.Interface,
    	controllerAttachDetachEnabled bool,
    	loopSleepDuration time.Duration,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. pkg/kubelet/types/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package types contains common types in the Kubelet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 03:21:31 UTC 2020
    - 688 bytes
    - Viewed (0)
  4. pkg/kubelet/apis/podresources/server_v1alpha1.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package podresources
    
    import (
    	"context"
    
    	"k8s.io/kubernetes/pkg/kubelet/metrics"
    
    	"k8s.io/kubelet/pkg/apis/podresources/v1"
    	"k8s.io/kubelet/pkg/apis/podresources/v1alpha1"
    )
    
    // v1alpha1PodResourcesServer implements PodResourcesListerServer
    type v1alpha1PodResourcesServer struct {
    	podsProvider    PodsProvider
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 17:33:01 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // kubelet.  If the kubelet is configured to verify the apiserver's TLS credentials, it does not mean the
      // connection to the real kubelet is vulnerable to a man in the middle attack (e.g. an attacker could not intercept
      // the actual log data coming from the real kubelet).
      // +optional
      optional bool insecureSkipTLSVerifyBackend = 9;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. pkg/features/kube_features.go

    	// kep: http://kep.k8s.io/4033
    	// alpha: v1.28
    	//
    	// Enable detection of the kubelet cgroup driver configuration option from
    	// the CRI.  The CRI runtime also needs to support this feature in which
    	// case the kubelet will ignore the cgroupDriver (--cgroup-driver)
    	// configuration option. If runtime doesn't support it, the kubelet will
    	// fallback to using it's cgroupDriver option.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_node_status_windows.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 kubelet
    
    import (
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/kubernetes/pkg/kubelet/winstats"
    )
    
    func getOSSpecificLabels() (map[string]string, error) {
    	osInfo, err := winstats.GetOSInfo()
    	if err != nil {
    		return nil, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 911 bytes
    - Viewed (0)
  8. pkg/kubelet/pod_workers.go

    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	"k8s.io/klog/v2"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    	"k8s.io/kubernetes/pkg/kubelet/events"
    	"k8s.io/kubernetes/pkg/kubelet/eviction"
    	"k8s.io/kubernetes/pkg/kubelet/metrics"
    	kubetypes "k8s.io/kubernetes/pkg/kubelet/types"
    	"k8s.io/kubernetes/pkg/kubelet/util/queue"
    	"k8s.io/utils/clock"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  9. pkg/kubelet/lifecycle/doc.go

    limitations under the License.
    */
    
    // Package lifecycle contains handlers for pod lifecycle events and interfaces
    // to integrate with kubelet admission, synchronization, and eviction of pods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 21 01:44:54 UTC 2020
    - 799 bytes
    - Viewed (0)
  10. cluster/gce/gci/node.yaml

          [Install]
          WantedBy=kubernetes.target
    
      - path: /etc/systemd/system/kubelet-monitor.service
        permissions: 0644
        owner: root
        content: |
          [Unit]
          Description=Kubernetes health monitoring for kubelet
          After=kube-node-configuration.service
    
          [Service]
          Restart=always
          RestartSec=10
          RemainAfterExit=yes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 13 18:38:40 UTC 2021
    - 3.9K bytes
    - Viewed (0)
Back to top