Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 1024x1024 (0.13 sec)

  1. pkg/apis/core/types.go

    	// More info: https://kubernetes.io/docs/concepts/configuration/secret/#secret-types
    	// +optional
    	Type SecretType
    }
    
    // MaxSecretSize represents the max secret size.
    const MaxSecretSize = 1 * 1024 * 1024
    
    // SecretType defines the types of secrets
    type SecretType string
    
    // These are the valid values for SecretType
    const (
    	// SecretTypeOpaque is the default; arbitrary user-defined data
    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. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	Type SecretType `json:"type,omitempty" protobuf:"bytes,3,opt,name=type,casttype=SecretType"`
    }
    
    const MaxSecretSize = 1 * 1024 * 1024
    
    type SecretType string
    
    const (
    	// SecretTypeOpaque is the default. Arbitrary user-defined data
    	SecretTypeOpaque SecretType = "Opaque"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top