Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 616 for typev3 (0.12 sec)

  1. pkg/kubelet/apis/podresources/types.go

    limitations under the License.
    */
    
    //go:generate mockgen -source=types.go -destination=testing/provider_mock.go -package=testing DevicesProvider,PodsProvider,CPUsProvider,MemoryProvider
    package podresources
    
    import (
    	v1 "k8s.io/api/core/v1"
    	podresourcesapi "k8s.io/kubelet/pkg/apis/podresources/v1"
    )
    
    // DevicesProvider knows how to provide the devices used by the given container
    type DevicesProvider interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 17:33:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. pkg/controller/certificates/signer/config/types.go

    limitations under the License.
    */
    
    package config
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // CSRSigningControllerConfiguration contains elements describing CSRSigningController.
    type CSRSigningControllerConfiguration struct {
    	// clusterSigningCertFile is the filename containing a PEM-encoded
    	// X509 CA certificate used to issue cluster-scoped certificates
    	ClusterSigningCertFile string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 02 03:38:15 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  3. pkg/controller/daemon/config/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package config
    
    // DaemonSetControllerConfiguration contains elements describing DaemonSetController.
    type DaemonSetControllerConfiguration struct {
    	// concurrentDaemonSetSyncs is the number of daemonset objects that are
    	// allowed to sync concurrently. Larger number = more responsive daemonset,
    	// but more CPU (and network) load.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 941 bytes
    - Viewed (0)
  4. pkg/apis/resource/types.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/kubernetes/pkg/apis/core"
    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // ResourceClaim describes which resources are needed by a resource consumer.
    // Its status tracks whether the resource has been allocated and what the
    // resulting attributes are.
    //
    // This is an alpha type and requires enabling the DynamicResourceAllocation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  5. pkg/controller/garbagecollector/metaonly/types.go

    // JSON data.
    // TODO: enable meta-only decoding for protobuf.
    //
    // +k8s:deepcopy-gen=true
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    type MetadataOnlyObject struct {
    	metav1.TypeMeta `json:",inline"`
    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty"`
    }
    
    // MetadataOnlyObjectList allows decoding from JSON data only the typemeta and metadata of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 07:28:47 UTC 2017
    - 1.5K bytes
    - Viewed (0)
  6. pkg/controller/namespace/config/types.go

    limitations under the License.
    */
    
    package config
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // NamespaceControllerConfiguration contains elements describing NamespaceController.
    type NamespaceControllerConfiguration struct {
    	// namespaceSyncPeriod is the period for syncing namespace life-cycle
    	// updates.
    	NamespaceSyncPeriod metav1.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1K bytes
    - Viewed (0)
  7. pkg/controller/nodeipam/config/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package config
    
    // NodeIPAMControllerConfiguration contains elements describing NodeIPAMController.
    type NodeIPAMControllerConfiguration struct {
    	// serviceCIDR is CIDR Range for Services in cluster.
    	ServiceCIDR string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 15 23:38:06 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  8. pkg/controller/serviceaccount/config/types.go

    limitations under the License.
    */
    
    package config
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // SAControllerConfiguration contains elements describing ServiceAccountController.
    type SAControllerConfiguration struct {
    	// serviceAccountKeyFile is the filename containing a PEM-encoded private RSA key
    	// used to sign service account tokens.
    	ServiceAccountKeyFile string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 24 23:20:17 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/bootstraptoken/v1/types.go

    limitations under the License.
    */
    
    package v1
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // BootstrapToken describes one bootstrap token, stored as a Secret in the cluster
    // +k8s:deepcopy-gen=true
    type BootstrapToken struct {
    	// Token is used for establishing bidirectional trust between nodes and control-planes.
    	// Used for joining nodes in the cluster.
    	Token *BootstrapTokenString `json:"token" datapolicy:"token"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 01 21:11:49 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  10. pkg/apis/certificates/types.go

    type ExtraValue []string
    
    type CertificateSigningRequestStatus struct {
    	// Conditions applied to the request, such as approval or denial.
    	// +optional
    	Conditions []CertificateSigningRequestCondition
    
    	// If request was approved, the controller will place the issued certificate here.
    	// +optional
    	Certificate []byte
    }
    
    type RequestConditionType string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top