Skip to main content

Copy a Kubernetes pod and run commands in its environment

Project description

copypod

Utility for copying a running Kubernetes pod so you can run commands in a copy of its environment, without worrying about it the pod potentially being removed due to a deploy.

copypod can work in two different modes, depending on if the --interactive flag is provided:

  • If the flag is left out, copypod will copy the specified pod and start it. When the pod reaches the "Running" state the name of the pod will be outputted as the only output. This is intended for use in automation scenarios.
  • If a command is provided with the --interactive flag, then the pod will be copied and started as before, but when the pod is running kubectl will be called and connect to the pod where the provided command is then run interactively. When the kubectl program exits the pod will be removed. This is intended for running ad-hoc tasks and processes.

Install

copypod is available on PyPI. You can install it via pipx:

$ pipx install copypod

Usage

$ copypod --help
usage: copypod [-h] [--context CONTEXT] [-n NAMESPACE] (-l SELECTOR | -p POD) [--container CONTAINER] [-c COMMAND] [-i INTERACTIVE] [--image IMAGE]
               [--cap-add CAP_ADD] [-s SUFFIX] [-e ENV]

Copy a Kubernetes pod and run commands in its environment.

options:
  -h, --help            show this help message and exit
  --context CONTEXT     Kubectl context to use for configuration (default: None)
  -n, --namespace NAMESPACE
                        Namespace for where the source pod is located (default: default)
  -l, --selector SELECTOR
                        Label selector of pod to copy (default: None)
  -p, --pod POD         Name of the pod to copy (default: None)
  --container CONTAINER
                        Name of container to copy, only needed if the pod has more than one container (default: None)
  -c, --command COMMAND
                        Initial command to run in the copied pod (default: sleep infinity)
  -i, --interactive INTERACTIVE
                        Command to run in an interactive console (default: None)
  --image IMAGE         Set to alternate Docker image to use for copied pod (default: None)
  --cap-add CAP_ADD     Capabilities to add for the copied pod, can be specified multiple times (default: None)
  -s, --suffix SUFFIX   Set custom suffix for the new pod, otherwise a random suffix is generated (default: None)
  -e, --env ENV         Environment variable to set (NAME=value), can be specified multiple times (default: None)

If the `--interactive` flag is provided, the copied pod will be removed immediately after the command exits, otherwise the name of the pod will be printed.

Examples

Say you wanted to copy the pod named my-great-pod and have the copied pod run until you specifically remove it, you could run:

$ copypod -p my-great-pod
pod-copy-girwak

pod-copy-girwak is then the name of the new pod created for you, and it will by default run sleep infinity as the starting command, meaning it will keep running forever until it's deleted.

At this point you can enter the pod and run commands as you'd like, for instance start a shell inside the pod with:

$ kubectl exec -it pod-copy-girwak -- bash
root@pod-copy-girwak:/#

When you are done you can remove the copied pod again with kubectl:

$ kubectl delete pod pod-copy-girwak
pod "pod-copy-girwak" deleted

Say you instead would like to copy a pod, start a shell in the copied pod and have the pod be deleted when you exit the shell, you can do that by supplying the --interactive flag like this:

$ copypod -p my-great-pod -i bash
root@pod-copy-i41u04:/# ps -ef
UID        PID  PPID  C STIME TTY          TIME CMD
root         1     0  0 10:43 ?        00:00:00 sleep infinity
root         7     0  0 10:43 ?        00:00:00 bash
root        13     7  0 10:43 ?        00:00:00 ps -ef

When you are done doing what you needed the pod for, you can exit the shell and the pod will be removed immediately.

The value for the --interactive flag is the command you'd like to start inside the pod.


Instead of having to look up the name of a pod before running copypod, you can also specify labels which match one or more pods that you'd like to copy. copypod will then pick the first pod matching the lables and copy that for you. This can be done with the --selector flag. It works the same way as for the kubectl command.

If we for example have one or more pods with the label app: my-great-service we can copy any of those pods without having to know the exact pod name by running:

$ copypod -l app=my-great-service -i bash
root@pod-copy-1gk57f:/#

Note regarding Alpine Linux

The sleep command in images based on Alpine Linux does not support "infinity" as an argument unless the "coreutils" package is installed. As a work around you can instead specify --command "sleep 1d" as an argument to copypod to change the command run in the new pod.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

copypod-0.6.0.tar.gz (9.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

copypod-0.6.0-py3-none-any.whl (13.6 kB view details)

Uploaded Python 3

File details

Details for the file copypod-0.6.0.tar.gz.

File metadata

  • Download URL: copypod-0.6.0.tar.gz
  • Upload date:
  • Size: 9.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for copypod-0.6.0.tar.gz
Algorithm Hash digest
SHA256 7a80b54a832fa94759d782401310cf27a130f92996abc6544c639d9e378e5615
MD5 3f709f7cb2360681cc99ba56fd4aae5c
BLAKE2b-256 c14456015749e1ac546ec14e1aad227af76fd2cb2b5f4b12777cda311a195016

See more details on using hashes here.

Provenance

The following attestation bundles were made for copypod-0.6.0.tar.gz:

Publisher: release-to-pypi.yml on Memrise/copypod

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copypod-0.6.0-py3-none-any.whl.

File metadata

  • Download URL: copypod-0.6.0-py3-none-any.whl
  • Upload date:
  • Size: 13.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for copypod-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 28a357b41ac90d43bb20709c5728572a6a762582e7d864704b5260bb7fb5aeb1
MD5 285805a094a4ae2ae019f95cc234101b
BLAKE2b-256 109c77bf2002dae80e41ec751167d2da0f922b5f91313bad29916995a9150212

See more details on using hashes here.

Provenance

The following attestation bundles were made for copypod-0.6.0-py3-none-any.whl:

Publisher: release-to-pypi.yml on Memrise/copypod

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page