github.com/pachyderm/pachyderm@v1.13.4/doc/docs/1.9.x/reference/pachctl/pachctl_deploy_import-images.md (about)

     1  ## pachctl deploy import-images
     2  
     3  Import a tarball (from stdin) containing all of the images in a deployment and push them to a private registry.
     4  
     5  ### Synopsis
     6  
     7  Import a tarball (from stdin) containing all of the images in a deployment and push them to a private registry.
     8  
     9  ```
    10  pachctl deploy import-images <input-file> [flags]
    11  ```
    12  
    13  ### Options
    14  
    15  ```
    16    -h, --help   help for import-images
    17  ```
    18  
    19  ### Options inherited from parent commands
    20  
    21  ```
    22        --block-cache-size string         Size of pachd's in-memory cache for PFS files. Size is specified in bytes, with allowed SI suffixes (M, K, G, Mi, Ki, Gi, etc).
    23    -c, --context string                  Name of the context to add to the pachyderm config. If unspecified, a context name will automatically be derived.
    24        --create-context --dry-run        Create a context, even with --dry-run.
    25        --dash-image string               Image URL for pachyderm dashboard
    26        --dashboard-only                  Only deploy the Pachyderm UI (experimental), without the rest of pachyderm. This is for launching the UI adjacent to an existing Pachyderm cluster. After deployment, run "pachctl port-forward" to connect
    27        --dry-run --create-context        Don't actually deploy pachyderm to Kubernetes, instead just print the manifest. Note that a pachyderm context will not be created, unless you also use --create-context.
    28        --dynamic-etcd-nodes int          Deploy etcd as a StatefulSet with the given number of pods.  The persistent volumes used by these pods are provisioned dynamically.  Note that StatefulSet is currently a beta kubernetes feature, which might be unavailable in older versions of kubernetes.
    29        --etcd-cpu-request string         (rarely set) The size of etcd's CPU request, which we give to Kubernetes. Size is in cores (with partial cores allowed and encouraged).
    30        --etcd-memory-request string      (rarely set) The size of etcd's memory request. Size is in bytes, with SI suffixes (M, K, G, Mi, Ki, Gi, etc).
    31        --etcd-storage-class string       If set, the name of an existing StorageClass to use for etcd storage. Ignored if --static-etcd-volume is set.
    32        --expose-object-api               If set, instruct pachd to serve its object/block API on its public port (not safe with auth enabled, do not set in production).
    33        --image-pull-secret string        A secret in Kubernetes that's needed to pull from your private registry.
    34        --local-roles                     Use namespace-local roles instead of cluster roles. Ignored if --no-rbac is set.
    35        --log-level string                The level of log messages to print options are, from least to most verbose: "error", "info", "debug". (default "info")
    36        --namespace string                Kubernetes namespace to deploy Pachyderm to.
    37        --new-storage-layer               (feature flag) Do not set, used for testing.
    38        --no-color                        Turn off colors.
    39        --no-dashboard                    Don't deploy the Pachyderm UI alongside Pachyderm (experimental).
    40        --no-expose-docker-socket         Don't expose the Docker socket to worker containers. This limits the privileges of workers which prevents them from automatically setting the container's working dir and user.
    41        --no-guaranteed                   Don't use guaranteed QoS for etcd and pachd deployments. Turning this on (turning guaranteed QoS off) can lead to more stable local clusters (such as a on Minikube), it should normally be used for production clusters.
    42        --no-rbac                         Don't deploy RBAC roles for Pachyderm. (for k8s versions prior to 1.8)
    43    -o, --output string                   Output format. One of: json|yaml (default "json")
    44        --pachd-cpu-request string        (rarely set) The size of Pachd's CPU request, which we give to Kubernetes. Size is in cores (with partial cores allowed and encouraged).
    45        --pachd-memory-request string     (rarely set) The size of PachD's memory request in addition to its block cache (set via --block-cache-size). Size is in bytes, with SI suffixes (M, K, G, Mi, Ki, Gi, etc).
    46        --registry string                 The registry to pull images from.
    47        --require-critical-servers-only   Only require the critical Pachd servers to startup and run without errors.
    48        --shards int                      (rarely set) The maximum number of pachd nodes allowed in the cluster; increasing this number blindly can result in degraded performance. (default 16)
    49        --static-etcd-volume string       Deploy etcd as a ReplicationController with one pod.  The pod uses the given persistent volume.
    50        --tls string                      string of the form "<cert path>,<key path>" of the signed TLS certificate and private key that Pachd should use for TLS authentication (enables TLS-encrypted communication with Pachd)
    51        --upload-concurrency-limit int    The maximum number of concurrent object storage uploads per Pachd instance. (default 100)
    52    -v, --verbose                         Output verbose logs
    53  ```
    54