Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for notFound (0.12 sec)

  1. CHANGELOG/CHANGELOG-1.30.md

    - When using `kubectl logs <pod-name>` and the pod is not found, the error message now includes the namespace. Previously, the message would be "Error from server (NotFound): pods "my-pod-name" not found". Now, it reflects the namespace in the message as follows: "Error from server (NotFound): pods "my-pod-name" not found in namespace "default"".
       ([#120111](https://github.com/kubernetes/kubernetes/pull/120111), [@newtondev](https://github.com/newtondev))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    			} else {
    				names.Insert(name)
    			}
    			if !podClaimNames.Has(name) {
    				// field.NotFound doesn't accept an
    				// explanation. Adding one here is more
    				// user-friendly.
    				error := field.NotFound(fldPath.Index(i), name)
    				error.Detail = "must be one of the names in pod.spec.resourceClaims"
    				if len(podClaimNames) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top