Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for GitRepoVolumeSource (0.35 sec)

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

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.GitRepoVolumeSource)(nil), (*core.GitRepoVolumeSource)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_GitRepoVolumeSource_To_core_GitRepoVolumeSource(a.(*v1.GitRepoVolumeSource), b.(*core.GitRepoVolumeSource), 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. pkg/apis/core/types.go

    	// EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir
    	// into the Pod's container.
    	// +optional
    	GitRepo *GitRepoVolumeSource
    	// Secret represents a secret that should populate this volume.
    	// +optional
    	Secret *SecretVolumeSource
    	// NFS represents an NFS mount on the host that shares a pod's lifetime
    	// +optional
    	NFS *NFSVolumeSource
    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

    // DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an
    // EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir
    // into the Pod's container.
    message GitRepoVolumeSource {
      // repository is the URL
      optional string repository = 1;
    
      // revision is the commit hash for the specified revision.
      // +optional
      optional string revision = 2;
    
    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/generated.proto

    // DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an
    // EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir
    // into the Pod's container.
    message GitRepoVolumeSource {
      // repository is the URL
      optional string repository = 1;
    
      // revision is the commit hash for the specified revision.
      // +optional
      optional string revision = 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)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir
    	// into the Pod's container.
    	// +optional
    	GitRepo *GitRepoVolumeSource `json:"gitRepo,omitempty" protobuf:"bytes,5,opt,name=gitRepo"`
    	// secret represents a secret that should populate this volume.
    	// More info: https://kubernetes.io/docs/concepts/storage/volumes#secret
    	// +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__batch__v1_openapi.json

                "type": "string"
              }
            },
            "required": [
              "port"
            ],
            "type": "object"
          },
          "io.k8s.api.core.v1.GitRepoVolumeSource": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (GitRepoVolumeSource) SwaggerDoc() map[string]string {
    	return map_GitRepoVolumeSource
    }
    
    var map_GlusterfsPersistentVolumeSource = 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)
  8. pkg/apis/core/validation/validation.go

    	allErrs = append(allErrs, validateHostPathType(hostPath.Type, fldPath.Child("type"))...)
    	return allErrs
    }
    
    func validateGitRepoVolumeSource(gitRepo *core.GitRepoVolumeSource, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if len(gitRepo.Repository) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("repository"), ""))
    	}
    
    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