Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for GitRepoVolumeSource (0.36 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "boolean"
            }
          },
          "required": [
            "pdName"
          ],
          "type": "object"
        },
        "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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. api/openapi-spec/v3/apis__apps__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 May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  9. pkg/generated/openapi/zz_generated.openapi.go

    		"k8s.io/api/core/v1.GRPCAction":                                                                         schema_k8sio_api_core_v1_GRPCAction(ref),
    		"k8s.io/api/core/v1.GitRepoVolumeSource":                                                                schema_k8sio_api_core_v1_GitRepoVolumeSource(ref),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  10. api/openapi-spec/v3/api__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 May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
Back to top