Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for SecretRef (0.4 sec)

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

    	out.Monitors = *(*[]string)(unsafe.Pointer(&in.Monitors))
    	out.Path = in.Path
    	out.User = in.User
    	out.SecretFile = in.SecretFile
    	out.SecretRef = (*core.SecretReference)(unsafe.Pointer(in.SecretRef))
    	out.ReadOnly = in.ReadOnly
    	return nil
    }
    
    // Convert_v1_CephFSPersistentVolumeSource_To_core_CephFSPersistentVolumeSource is an autogenerated conversion function.
    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. staging/src/k8s.io/api/core/v1/types.go

    	// secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty.
    	// More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it
    	// +optional
    	SecretRef *LocalObjectReference `json:"secretRef,omitempty" protobuf:"bytes,5,opt,name=secretRef"`
    	// readOnly is Optional: Defaults to false (read/write). ReadOnly here will force
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string secretFile = 4;
    
      // secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty.
      // More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it
      // +optional
      optional SecretReference secretRef = 5;
    
      // readOnly is Optional: Defaults to false (read/write). ReadOnly here will force
    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_swagger_doc_generated.go

    	"secretFile": "secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
    	"secretRef":  "secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string secretFile = 4;
    
      // secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty.
      // More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it
      // +optional
      optional SecretReference secretRef = 5;
    
      // readOnly is Optional: Defaults to false (read/write). ReadOnly here will force
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. pkg/apis/core/validation/validation.go

    	}
    	if (iscsi.DiscoveryCHAPAuth || iscsi.SessionCHAPAuth) && iscsi.SecretRef == nil {
    		allErrs = append(allErrs, field.Required(fldPath.Child("secretRef"), ""))
    	}
    	if iscsi.SecretRef != nil {
    		if len(iscsi.SecretRef.Name) == 0 {
    			allErrs = append(allErrs, field.Required(fldPath.Child("secretRef", "name"), ""))
    		}
    	}
    	if iscsi.InitiatorName != nil {
    		initiator := *iscsi.InitiatorName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    	// +optional
    	FSType string
    	// Optional: SecretRef is reference to the secret object containing
    	// sensitive information to pass to the plugin scripts. This may be
    	// empty if no secret object is specified. If the secret object
    	// contains more than one secret, all secrets are passed to the plugin
    	// scripts.
    	// +optional
    	SecretRef *SecretReference
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

                "type": "string"
              },
              "secretRef": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretReference"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "secretRef": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.7.md

        * validate the name of the ConfigMap in a ConfigMapRef
        * validate the name of the Secret in a SecretRef
    
      * Fix the bug where StartedAt time is not reported for exited containers. ([#45977](https://github.com/kubernetes/kubernetes/pull/45977), [@yujuhong](https://github.com/yujuhong))
    
    * Changes/deprecations
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
Back to top