Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for pod_name (0.17 sec)

  1. CHANGELOG/CHANGELOG-1.14.md

        * Action required: any Prometheus queries that match `pod_name` and `container_name` labels (e.g. cadvisor or kubelet probe metrics) should be updated to use `pod` and `container` instead. `pod_name` and `container_name` labels will be present alongside...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 14 22:06:39 UTC 2021
    - 271.5K bytes
    - Viewed (2)
  2. CHANGELOG/CHANGELOG-1.16.md

    ### Removed metrics
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.29.md

    - Fixed the bug where kubelet couldn't output logs after log file rotated when `kubectl logs POD_NAME -f` is running. ([#115702](https://github.com/kubernetes/kubernetes/pull/115702), [@xyz-li](https://github.com/xyz-li))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation.go

    	}
    	// During endpoint update, verify that NodeName is a DNS subdomain and transition rules allow the update
    	if address.NodeName != nil {
    		for _, msg := range ValidateNodeName(*address.NodeName, false) {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("nodeName"), *address.NodeName, msg))
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/resource/v1alpha2/generated.pb.go

    	i -= len(m.DriverName)
    	copy(dAtA[i:], m.DriverName)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.DriverName)))
    	i--
    	dAtA[i] = 0x1a
    	i -= len(m.NodeName)
    	copy(dAtA[i:], m.NodeName)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.NodeName)))
    	i--
    	dAtA[i] = 0x12
    	{
    		size, err := m.ObjectMeta.MarshalToSizedBuffer(dAtA[:i])
    		if err != nil {
    			return 0, err
    		}
    		i -= size
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 261.9K bytes
    - Viewed (0)
  6. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_EndpointAddress_To_core_EndpointAddress(in *v1.EndpointAddress, out *core.EndpointAddress, s conversion.Scope) error {
    	out.IP = in.IP
    	out.Hostname = in.Hostname
    	out.NodeName = (*string)(unsafe.Pointer(in.NodeName))
    	out.TargetRef = (*core.ObjectReference)(unsafe.Pointer(in.TargetRef))
    	return nil
    }
    
    // Convert_v1_EndpointAddress_To_core_EndpointAddress is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      // This field should not be used to express a desire for the pod to be scheduled on a specific node.
      // https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#nodename
      // +optional
      optional string nodeName = 10;
    
      // Host networking requested for this pod. Use the host's network namespace.
      // If this option is set, the ports that will be used must be specified.
      // Default to false.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.11.md

    * Update defaultbackend to 1.5: move /metrics to a private endpoint (:10254). ([#69383](https://github.com/kubernetes/kubernetes/pull/69383), [@bowei](https://github.com/bowei))
    * Allows changing nodeName in endpoint update. ([#68575](https://github.com/kubernetes/kubernetes/pull/68575), [@prameshj](https://github.com/prameshj))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

                ],
                "x-kubernetes-list-type": "map",
                "x-kubernetes-patch-merge-key": "name",
                "x-kubernetes-patch-strategy": "merge"
              },
              "nodeName": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Wd     int32
    	Mask   uint32
    	Cookie uint32
    	Len    uint32
    }
    
    const SizeofInotifyEvent = 0x10
    
    const SI_LOAD_SHIFT = 0x10
    
    type Utsname struct {
    	Sysname    [65]byte
    	Nodename   [65]byte
    	Release    [65]byte
    	Version    [65]byte
    	Machine    [65]byte
    	Domainname [65]byte
    }
    
    const (
    	AT_EMPTY_PATH   = 0x1000
    	AT_FDCWD        = -0x64
    	AT_NO_AUTOMOUNT = 0x800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
Back to top