Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for Capabilities (0.45 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.Capabilities)(nil), (*core.Capabilities)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_Capabilities_To_core_Capabilities(a.(*v1.Capabilities), b.(*core.Capabilities), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.Capabilities)(nil), (*v1.Capabilities)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    )
    
    // Capability represent POSIX capabilities type
    type Capability string
    
    // Capabilities represent POSIX capabilities that can be added or removed to a running container.
    type Capabilities struct {
    	// Added capabilities
    	// +optional
    	Add []Capability
    	// Removed capabilities
    	// +optional
    	Drop []Capability
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional LocalObjectReference nodePublishSecretRef = 5;
    }
    
    // Adds and removes POSIX capabilities from running containers.
    message Capabilities {
      // Added capabilities
      // +optional
      repeated string add = 1;
    
      // Removed capabilities
      // +optional
      repeated string drop = 2;
    }
    
    // Represents a Ceph Filesystem mount that lasts the lifetime of a pod
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    type SecurityContext struct {
    	// The capabilities to add/drop when running containers.
    	// Defaults to the default set of capabilities granted by the container runtime.
    	// Note that this field cannot be set when spec.os.name is windows.
    	// +optional
    	Capabilities *Capabilities `json:"capabilities,omitempty" protobuf:"bytes,1,opt,name=capabilities"`
    	// Run container in privileged mode.
    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. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	return map_CSIVolumeSource
    }
    
    var map_Capabilities = map[string]string{
    	"":     "Adds and removes POSIX capabilities from running containers.",
    	"add":  "Added capabilities",
    	"drop": "Removed capabilities",
    }
    
    func (Capabilities) SwaggerDoc() map[string]string {
    	return map_Capabilities
    }
    
    var map_CephFSPersistentVolumeSource = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional LocalObjectReference nodePublishSecretRef = 5;
    }
    
    // Adds and removes POSIX capabilities from running containers.
    message Capabilities {
      // Added capabilities
      // +optional
      // +listType=atomic
      repeated string add = 1;
    
      // Removed capabilities
      // +optional
      // +listType=atomic
      repeated string drop = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    		}
    
    		if sc.Capabilities != nil {
    			for _, cap := range sc.Capabilities.Add {
    				if string(cap) == "CAP_SYS_ADMIN" {
    					allErrs = append(allErrs, field.Invalid(fldPath, sc, "cannot set `allowPrivilegeEscalation` to false and `capabilities.Add` CAP_SYS_ADMIN"))
    				}
    			}
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

              },
              "capabilities": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.Capabilities"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. prow/config/calico.yaml

                  "kubeconfig": "__KUBECONFIG_FILEPATH__"
              }
            },
            {
              "type": "portmap",
              "snat": true,
              "capabilities": {"portMappings": true}
            },
            {
              "type": "bandwidth",
              "capabilities": {"bandwidth": true}
            }
          ]
        }
    ---
    # Source: calico/templates/kdd-crds.yaml
    apiVersion: apiextensions.k8s.io/v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.24.md

    - Remove the deprecated flag `--experimental-check-node-capabilities-before-mount`. With CSI now GA, there is a better alternative. Remove any use of  `--experimental-check-node-capabilities-before-mount` from your kubelet scripts or manifests. ([#104732](https://github.com/kubernetes/kubernetes/pull/104732), [@mengjiao-liu](https://github.com/mengjiao-liu))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
Back to top