Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 174 for gitRepo (0.33 sec)

  1. pkg/apis/core/validation/validation_test.go

    			name: "GitRepo contains ..",
    			vol: core.Volume{
    				Name: "gitrepo",
    				VolumeSource: core.VolumeSource{
    					GitRepo: &core.GitRepoVolumeSource{
    						Repository: "foo",
    						Directory:  "dots/../bar",
    					},
    				},
    			},
    			errs: []verr{{
    				etype:  field.ErrorTypeInvalid,
    				field:  "gitRepo.directory",
    				detail: `must not contain '..'`,
    			}},
    		}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/vcstest/go/mod/gitrepo1.txt

    handle dir
    
    -- index.html --
    <!DOCTYPE html>
    <html>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:22:22 UTC 2022
    - 167 bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    		}
    	}
    	if source.GitRepo != nil {
    		if numVolumes > 0 {
    			allErrs = append(allErrs, field.Forbidden(fldPath.Child("gitRepo"), "may not specify more than 1 volume type"))
    		} else {
    			numVolumes++
    			allErrs = append(allErrs, validateGitRepoVolumeSource(source.GitRepo, fldPath.Child("gitRepo"))...)
    		}
    	}
    	if source.GCEPersistentDisk != nil {
    		if numVolumes > 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)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            },
            "gitRepo": {
              "$ref": "#/definitions/io.k8s.api.core.v1.GitRepoVolumeSource",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// gitRepo represents a git repository at a particular revision.
    	// 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.
    	// +optional
    	GitRepo *GitRepoVolumeSource `json:"gitRepo,omitempty" protobuf:"bytes,5,opt,name=gitRepo"`
    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. pkg/apis/core/zz_generated.deepcopy.go

    	}
    	if in.AWSElasticBlockStore != nil {
    		in, out := &in.AWSElasticBlockStore, &out.AWSElasticBlockStore
    		*out = new(AWSElasticBlockStoreVolumeSource)
    		**out = **in
    	}
    	if in.GitRepo != nil {
    		in, out := &in.GitRepo, &out.GitRepo
    		*out = new(GitRepoVolumeSource)
    		**out = **in
    	}
    	if in.Secret != nil {
    		in, out := &in.Secret, &out.Secret
    		*out = new(SecretVolumeSource)
    		(*in).DeepCopyInto(*out)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	}
    	if in.AWSElasticBlockStore != nil {
    		in, out := &in.AWSElasticBlockStore, &out.AWSElasticBlockStore
    		*out = new(AWSElasticBlockStoreVolumeSource)
    		**out = **in
    	}
    	if in.GitRepo != nil {
    		in, out := &in.GitRepo, &out.GitRepo
    		*out = new(GitRepoVolumeSource)
    		**out = **in
    	}
    	if in.Secret != nil {
    		in, out := &in.Secret, &out.Secret
    		*out = new(SecretVolumeSource)
    		(*in).DeepCopyInto(*out)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/core/v1/generated.proto

      // gitRepo represents a git repository at a particular revision.
      // 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.
      // +optional
      optional GitRepoVolumeSource gitRepo = 5;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    	// +optional
    	AWSElasticBlockStore *AWSElasticBlockStoreVolumeSource
    	// GitRepo represents a git repository at a particular revision.
    	// 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.
    	// +optional
    	GitRepo *GitRepoVolumeSource
    	// Secret represents a secret that should populate this volume.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"gitRepo":               "gitRepo represents a git repository at a particular revision. 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.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top