Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 931 for kubelet_ (0.21 sec)

  1. pkg/kubelet/volumemanager/metrics/metrics.go

    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    	ReconstructVolumeOperationsErrorsTotal = metrics.NewCounter(
    		&metrics.CounterOpts{
    			Name:           reconstructVolumeOperationsErrorsTotal,
    			Help:           "The number of volumes that failed reconstruction from the operating system during kubelet startup.",
    			StabilityLevel: metrics.ALPHA,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 06 16:48:59 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. cluster/gce/gci/master.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-master-configuration.service
    
          [Service]
          Restart=always
          RestartSec=10
          RemainAfterExit=yes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 12 16:22:20 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/internal_container_lifecycle.go

    limitations under the License.
    */
    
    package cm
    
    import (
    	"k8s.io/api/core/v1"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	"k8s.io/kubernetes/pkg/kubelet/cm/cpumanager"
    	"k8s.io/kubernetes/pkg/kubelet/cm/memorymanager"
    	"k8s.io/kubernetes/pkg/kubelet/cm/topologymanager"
    )
    
    type InternalContainerLifecycle interface {
    	PreCreateContainer(pod *v1.Pod, container *v1.Container, containerConfig *runtimeapi.ContainerConfig) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 06:43:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. cluster/gce/config-common.sh

    # Path for kubelet config file on Windows nodes.
    export WINDOWS_KUBELET_CONFIG_FILE="${WINDOWS_K8S_DIR}\kubelet-config.yaml"
    # Path for kubeconfig file on Windows nodes.
    export WINDOWS_KUBECONFIG_FILE="${WINDOWS_K8S_DIR}\kubelet.kubeconfig"
    # Path for bootstrap kubeconfig file on Windows nodes.
    export WINDOWS_BOOTSTRAP_KUBECONFIG_FILE="${WINDOWS_K8S_DIR}\kubelet.bootstrap-kubeconfig"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:06:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/certificates/v1beta1/types.go

    	// `scope-hostname.io/name`.
    	// If empty, it will be defaulted:
    	//  1. If it's a kubelet client certificate, it is assigned
    	//     "kubernetes.io/kube-apiserver-client-kubelet".
    	//  2. If it's a kubelet serving certificate, it is assigned
    	//     "kubernetes.io/kubelet-serving".
    	//  3. Otherwise, it is assigned "kubernetes.io/legacy-unknown".
    	// Distribution of trust for signers happens out of band.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  7. pkg/kubelet/types/pod_status.go

    	"k8s.io/kubernetes/pkg/features"
    )
    
    // PodConditionsByKubelet is the list of pod conditions owned by kubelet
    var PodConditionsByKubelet = []v1.PodConditionType{
    	v1.PodScheduled,
    	v1.PodReady,
    	v1.PodInitialized,
    	v1.ContainersReady,
    }
    
    // PodConditionByKubelet returns if the pod condition type is owned by kubelet
    func PodConditionByKubelet(conditionType v1.PodConditionType) bool {
    	for _, c := range PodConditionsByKubelet {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 15:18:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods_linux_test.go

    limitations under the License.
    */
    
    package kubelet
    
    import (
    	"testing"
    
    	"github.com/stretchr/testify/assert"
    	v1 "k8s.io/api/core/v1"
    
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	_ "k8s.io/kubernetes/pkg/apis/core/install"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    	volumetest "k8s.io/kubernetes/pkg/volume/testing"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 18:00:59 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_network_others.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
    
    // Do nothing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 679 bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.5.md

      - [beta] Added ability to authenticate/authorize access to the Kubelet API ([docs](http://kubernetes.io/docs/admin/kubelet-authentication-authorization/)) ([kubernetes/features#89](https://github.com/kubernetes/enhancements/issues/89))
    - **AWS**
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
Back to top