Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for SecretReference (0.21 sec)

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

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.SecretReference)(nil), (*core.SecretReference)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_SecretReference_To_core_SecretReference(a.(*v1.SecretReference), b.(*core.SecretReference), scope)
    	}); err != nil {
    		return err
    	}
    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. common-protos/k8s.io/api/core/v1/generated.proto

      // optional field specify whether the Secret or its key must be defined
      // +optional
      optional bool optional = 4;
    }
    
    // SecretReference represents a Secret Reference. It has enough information to retrieve secret
    // in any namespace
    // +structType=atomic
    message SecretReference {
      // name is unique within a namespace to reference a secret resource.
      // +optional
      optional string name = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	// the ReadOnly setting in VolumeMounts.
    	// +optional
    	ReadOnly bool
    }
    
    // SecretReference represents a Secret Reference. It has enough information to retrieve secret
    // in any namespace
    type SecretReference struct {
    	// Name is unique within a namespace to reference a secret resource.
    	// +optional
    	Name 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)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // optional field specify whether the Secret or its key must be defined
      // +optional
      optional bool optional = 4;
    }
    
    // SecretReference represents a Secret Reference. It has enough information to retrieve secret
    // in any namespace
    // +structType=atomic
    message SecretReference {
      // name is unique within a namespace to reference a secret resource.
      // +optional
      optional string name = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	ReadOnly bool `json:"readOnly,omitempty" protobuf:"varint,6,opt,name=readOnly"`
    }
    
    // SecretReference represents a Secret Reference. It has enough information to retrieve secret
    // in any namespace
    // +structType=atomic
    type SecretReference struct {
    	// name is unique within a namespace to reference a secret resource.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

            },
            "required": [
              "gateway",
              "system",
              "secretRef"
            ],
            "type": "object"
          },
          "io.k8s.api.core.v1.SecretReference": {
            "description": "SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace",
            "properties": {
              "name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    var map_SecretReference = map[string]string{
    	"":          "SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace",
    	"name":      "name is unique within a namespace to reference a secret resource.",
    	"namespace": "namespace defines the space within which the secret name must be unique.",
    }
    
    func (SecretReference) SwaggerDoc() map[string]string {
    	return map_SecretReference
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    		}
    	}
    	return allErrs
    }
    
    // validatePVSecretReference check whether provided SecretReference object is valid in terms of secret name and namespace.
    
    func validatePVSecretReference(secretRef *core.SecretReference, fldPath *field.Path) field.ErrorList {
    	var allErrs field.ErrorList
    	if len(secretRef.Name) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top