Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for Capabilities (0.19 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.12.md

    - The dockershim now sets the "bandwidth" and "ipRanges" CNI capabilities (dynamic parameters). Plugin authors and administrators can now take advantage of this by updating their CNI configuration file. For more information, see the [CNI docs](https://github.com/containernetworking/cni/blob/master/CONVENTIONS.md#dynamic-plugin-specific-fields-capabilities--runtime-configuration) ([#64445](https://github.com/kubernetes/kubernetes/pull/64445), [@squeed](htt...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
Back to top