ファイルをKubernetesポッドに再帰的にコピーする方法は?


9

ファイルをKubernetesポッドに再帰的にコピーしたい

私は試した kubectl cp -r

私は得ました: error: unknown shorthand flag: 'r' in -r

ディレクトリ全体を再帰的にポッドに転送する最良の方法は何ですか。

回答:


9

kubectl cp末尾のスラッシュにうるさいようですが、デフォルトではディレクトリが指定されたときに再帰的なコピーを行います。fooコピーするディレクトリである場合は、単に実行します

kubectl cp /path/to/foo <pod-id>:/path/in/container/

勝利時:kubectl cp C:/myfiles/azureCLI/WantToCopy/* my-pod:/mnt/data/something/
TiloBunt

0

ヘルプメニューによると、再帰オプションは存在しないようです。

user@localhost ~ $ kubectl cp --help
Copy files and directories to and from containers.

Examples:
  # !!!Important Note!!!
  # Requires that the 'tar' binary is present in your container
  # image.  If 'tar' is not present, 'kubectl cp' will fail.

  # Copy /tmp/foo_dir local directory to /tmp/bar_dir in a remote pod in the default namespace
  kubectl cp /tmp/foo_dir <some-pod>:/tmp/bar_dir

  # Copy /tmp/foo local file to /tmp/bar in a remote pod in a specific container
  kubectl cp /tmp/foo <some-pod>:/tmp/bar -c <specific-container>

  # Copy /tmp/foo local file to /tmp/bar in a remote pod in namespace <some-namespace>
  kubectl cp /tmp/foo <some-namespace>/<some-pod>:/tmp/bar

  # Copy /tmp/foo from a remote pod to /tmp/bar locally
  kubectl cp <some-namespace>/<some-pod>:/tmp/foo /tmp/bar

Options:
  -c, --container='': Container name. If omitted, the first container in the pod will be chosen

Usage:
  kubectl cp <file-spec-src> <file-spec-dest> [options]

Use "kubectl options" for a list of global command-line options (applies to all commands).

ファイルを再帰的にコピーするために、すべてのファイルをディレクトリに配置し、このフォルダーをポッドにコピーすると、すべてのファイルがコピーされます。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.