Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for api_version (0.29 sec)

  1. pkg/apis/core/types.go

    type ObjectFieldSelector struct {
    	// Required: Version of the schema the FieldPath is written in terms of.
    	// If no value is specified, it will be defaulted to the APIVersion of the
    	// enclosing object.
    	APIVersion string
    	// Required: Path of the field to select in the specified API version
    	FieldPath string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.8.md

      * The audit log file defaults to JSON encoding when using the advanced auditing feature gate.
      * An audit policy file without either an `apiVersion` or a `kind` field may be treated as invalid.
      * The webhook and log file now output the `v1beta1` event format.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.14.md

    - Fixed an issue with missing `apiVersion/kind` in object data sent to admission webhooks ([#74448](https://github.com/kubernetes/kubernetes/pull/74448), [@liggitt](https://github.com/liggitt))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 14 22:06:39 UTC 2021
    - 271.5K bytes
    - Viewed (2)
  4. common-protos/k8s.io/api/core/v1/generated.proto

    // +structType=atomic
    message LocalObjectReference {
      // Name of the referent.
      // More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
      // TODO: Add other useful fields. apiVersion, kind, uid?
      // +optional
      optional string name = 1;
    }
    
    // Local represents directly-attached storage with node affinity (Beta feature)
    message LocalVolumeSource {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.7.md

        ```yaml
        kind: NetworkPolicy
        apiVersion: networking.k8s.io/v1
        metadata:
          name: default-deny
        spec:
          podSelector:
        ```
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  6. pkg/apis/core/validation/validation.go

    	allErrs := field.ErrorList{}
    
    	if len(fs.APIVersion) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("apiVersion"), ""))
    		return allErrs
    	}
    	if len(fs.FieldPath) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("fieldPath"), ""))
    		return allErrs
    	}
    
    	internalFieldPath, _, err := podshelper.ConvertDownwardAPIFieldLabel(fs.APIVersion, fs.FieldPath, "")
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      // This field is effectively required, but due to backwards compatibility is
      // allowed to be empty. Instances of this type with an empty value here are
      // almost certainly wrong.
      // TODO: Add other useful fields. apiVersion, kind, uid?
      // More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
      // +optional
      // +default=""
      // +kubebuilder:default=""
    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.9.md

    *   The API group/version for the kube-proxy configuration has changed from `componentconfig/v1alpha1` to `kubeproxy.config.k8s.io/v1alpha1`. If you are using a config file for kube-proxy instead of the command line flags, you must change its apiVersion to `kubeproxy.config.k8s.io/v1alpha1`. ([#53645](https://github.com/kubernetes/kubernetes/pull/53645), [@xiangpengzhao](https://github.com/xiangpengzhao))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.21.md

    ### API Change
    
    - Change the APIVersion proto name of BoundObjectRef from aPIVersion to apiVersion. ([#97379](https://github.com/kubernetes/kubernetes/pull/97379), [@kebe7jun](https://github.com/kebe7jun)) [SIG Auth]
    - Promote Immutable Secrets/ConfigMaps feature to Stable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.30.md

    - kubeadm: Added support for machine-readable output with `-o yaml` and `-o json` to the command `kubeadm certs check-expiration`. This change is introduced in a new API: ``` kind: CertificateExpirationInfo apiVersion: output.kubeadm.k8s.io/v1alpha3 ``` The existing non-structured formatting is preserved. The output API version v1alpha2 is now deprecated and will be removed in a future release. Please migrate to using v1alpha3.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
Back to top