| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018 |
- package cmd
- import (
- "context"
- "errors"
- "fmt"
- "io"
- "os"
- "strings"
- "time"
- "github.com/fatih/color"
- api "github.com/porter-dev/porter/api/client"
- "github.com/porter-dev/porter/api/types"
- "github.com/porter-dev/porter/cli/cmd/utils"
- "github.com/spf13/cobra"
- batchv1 "k8s.io/api/batch/v1"
- v1 "k8s.io/api/core/v1"
- rbacv1 "k8s.io/api/rbac/v1"
- "k8s.io/apimachinery/pkg/api/resource"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/fields"
- "k8s.io/apimachinery/pkg/watch"
- "k8s.io/kubectl/pkg/util/term"
- "k8s.io/apimachinery/pkg/runtime"
- "k8s.io/apimachinery/pkg/runtime/schema"
- "k8s.io/client-go/kubernetes"
- "k8s.io/client-go/rest"
- "k8s.io/client-go/tools/clientcmd"
- "k8s.io/client-go/tools/remotecommand"
- )
- var (
- namespace string
- verbose bool
- existingPod bool
- nonInteractive bool
- containerName string
- cpuMilli int
- memoryMi int
- )
- // runCmd represents the "porter run" base command when called
- // without any subcommands
- var runCmd = &cobra.Command{
- Use: "run [release] -- COMMAND [args...]",
- Args: cobra.MinimumNArgs(2),
- Short: "Runs a command inside a connected cluster container.",
- Run: func(cmd *cobra.Command, args []string) {
- err := checkLoginAndRun(args, run)
- if err != nil {
- os.Exit(1)
- }
- },
- }
- // cleanupCmd represents the "porter run cleanup" subcommand
- var cleanupCmd = &cobra.Command{
- Use: "cleanup",
- Args: cobra.NoArgs,
- Short: "Delete any lingering ephemeral pods that were created with \"porter run\".",
- Run: func(cmd *cobra.Command, args []string) {
- err := checkLoginAndRun(args, cleanup)
- if err != nil {
- os.Exit(1)
- }
- },
- }
- func init() {
- rootCmd.AddCommand(runCmd)
- runCmd.PersistentFlags().StringVar(
- &namespace,
- "namespace",
- "default",
- "namespace of release to connect to",
- )
- runCmd.PersistentFlags().BoolVarP(
- &existingPod,
- "existing_pod",
- "e",
- false,
- "whether to connect to an existing pod",
- )
- runCmd.PersistentFlags().BoolVarP(
- &verbose,
- "verbose",
- "v",
- false,
- "whether to print verbose output",
- )
- runCmd.PersistentFlags().BoolVar(
- &nonInteractive,
- "non-interactive",
- false,
- "whether to run in non-interactive mode",
- )
- runCmd.PersistentFlags().StringVarP(
- &containerName,
- "container",
- "c",
- "",
- "name of the container inside pod to run the command in",
- )
- runCmd.PersistentFlags().IntVarP(
- &cpuMilli,
- "cpu",
- "",
- 0,
- "cpu allocation in millicores (1000 millicores = 1 vCPU)",
- )
- runCmd.PersistentFlags().IntVarP(
- &memoryMi,
- "ram",
- "",
- 0,
- "ram allocation in Mi (1024 Mi = 1 GB)",
- )
- runCmd.AddCommand(cleanupCmd)
- }
- func run(_ *types.GetAuthenticatedUserResponse, client *api.Client, args []string) error {
- execArgs := args[1:]
- color.New(color.FgGreen).Println("Running", strings.Join(execArgs, " "), "for release", args[0])
- if nonInteractive {
- color.New(color.FgBlue).Println("Using non-interactive mode. The first available pod will be used to run the command.")
- }
- if len(execArgs) > 0 {
- release, err := client.GetRelease(
- context.Background(), cliConf.Project, cliConf.Cluster, namespace, args[0],
- )
- if err != nil {
- return fmt.Errorf("error fetching release %s: %w", args[0], err)
- }
- if release.BuildConfig != nil &&
- (strings.Contains(release.BuildConfig.Builder, "heroku") ||
- strings.Contains(release.BuildConfig.Builder, "paketo")) &&
- execArgs[0] != "/cnb/lifecycle/launcher" &&
- execArgs[0] != "launcher" {
- // this is a buildpacks release using a heroku builder, prepend the launcher
- execArgs = append([]string{"/cnb/lifecycle/launcher"}, execArgs...)
- }
- }
- podsSimple, err := getPods(client, namespace, args[0])
- if err != nil {
- return fmt.Errorf("Could not retrieve list of pods: %s", err.Error())
- }
- // if length of pods is 0, throw error
- var selectedPod podSimple
- if len(podsSimple) == 0 {
- return fmt.Errorf("At least one pod must exist in this deployment.")
- } else if nonInteractive || len(podsSimple) == 1 {
- selectedPod = podsSimple[0]
- } else {
- podNames := make([]string, 0)
- for _, podSimple := range podsSimple {
- podNames = append(podNames, podSimple.Name)
- }
- selectedPodName, err := utils.PromptSelect("Select the pod:", podNames)
- if err != nil {
- return err
- }
- // find selected pod
- for _, podSimple := range podsSimple {
- if selectedPodName == podSimple.Name {
- selectedPod = podSimple
- }
- }
- }
- var selectedContainerName string
- if len(selectedPod.ContainerNames) == 0 {
- return fmt.Errorf("At least one container must exist in the selected pod.")
- } else if len(selectedPod.ContainerNames) == 1 {
- if containerName != "" && containerName != selectedPod.ContainerNames[0] {
- return fmt.Errorf("provided container %s does not exist in pod %s", containerName, selectedPod.Name)
- }
- selectedContainerName = selectedPod.ContainerNames[0]
- }
- if containerName != "" && selectedContainerName == "" {
- // check if provided container name exists in the pod
- for _, name := range selectedPod.ContainerNames {
- if name == containerName {
- selectedContainerName = name
- break
- }
- }
- if selectedContainerName == "" {
- return fmt.Errorf("provided container %s does not exist in pod %s", containerName, selectedPod.Name)
- }
- }
- if selectedContainerName == "" {
- if nonInteractive {
- return fmt.Errorf("container name must be specified using the --container flag when using non-interactive mode")
- }
- selectedContainer, err := utils.PromptSelect("Select the container:", selectedPod.ContainerNames)
- if err != nil {
- return err
- }
- selectedContainerName = selectedContainer
- }
- config := &PorterRunSharedConfig{
- Client: client,
- }
- err = config.setSharedConfig()
- if err != nil {
- return fmt.Errorf("Could not retrieve kube credentials: %s", err.Error())
- }
- if existingPod {
- return executeRun(config, namespace, selectedPod.Name, selectedContainerName, execArgs)
- }
- return executeRunEphemeral(config, namespace, selectedPod.Name, selectedContainerName, execArgs)
- }
- func cleanup(_ *types.GetAuthenticatedUserResponse, client *api.Client, _ []string) error {
- config := &PorterRunSharedConfig{
- Client: client,
- }
- err := config.setSharedConfig()
- if err != nil {
- return fmt.Errorf("Could not retrieve kube credentials: %s", err.Error())
- }
- proceed, err := utils.PromptSelect(
- fmt.Sprintf("You have chosen the '%s' namespace for cleanup. Do you want to proceed?", namespace),
- []string{"Yes", "No", "All namespaces"},
- )
- if err != nil {
- return err
- }
- if proceed == "No" {
- return nil
- }
- var podNames []string
- color.New(color.FgGreen).Println("Fetching ephemeral pods for cleanup")
- if proceed == "All namespaces" {
- namespaces, err := config.Clientset.CoreV1().Namespaces().List(context.Background(), metav1.ListOptions{})
- if err != nil {
- return err
- }
- for _, namespace := range namespaces.Items {
- if pods, err := getEphemeralPods(namespace.Name, config.Clientset); err == nil {
- podNames = append(podNames, pods...)
- } else {
- return err
- }
- }
- } else {
- if pods, err := getEphemeralPods(namespace, config.Clientset); err == nil {
- podNames = append(podNames, pods...)
- } else {
- return err
- }
- }
- if len(podNames) == 0 {
- color.New(color.FgBlue).Println("No ephemeral pods to delete")
- return nil
- }
- selectedPods, err := utils.PromptMultiselect("Select ephemeral pods to delete", podNames)
- if err != nil {
- return err
- }
- for _, podName := range selectedPods {
- color.New(color.FgBlue).Printf("Deleting ephemeral pod: %s\n", podName)
- err = config.Clientset.CoreV1().Pods(namespace).Delete(
- context.Background(), podName, metav1.DeleteOptions{},
- )
- if err != nil {
- return err
- }
- }
- return nil
- }
- func getEphemeralPods(namespace string, clientset *kubernetes.Clientset) ([]string, error) {
- var podNames []string
- pods, err := clientset.CoreV1().Pods(namespace).List(
- context.Background(), metav1.ListOptions{LabelSelector: "porter/ephemeral-pod"},
- )
- if err != nil {
- return nil, err
- }
- for _, pod := range pods.Items {
- podNames = append(podNames, pod.Name)
- }
- return podNames, nil
- }
- type PorterRunSharedConfig struct {
- Client *api.Client
- RestConf *rest.Config
- Clientset *kubernetes.Clientset
- RestClient *rest.RESTClient
- }
- func (p *PorterRunSharedConfig) setSharedConfig() error {
- pID := cliConf.Project
- cID := cliConf.Cluster
- kubeResp, err := p.Client.GetKubeconfig(context.Background(), pID, cID, cliConf.Kubeconfig)
- if err != nil {
- return err
- }
- kubeBytes := kubeResp.Kubeconfig
- cmdConf, err := clientcmd.NewClientConfigFromBytes(kubeBytes)
- if err != nil {
- return err
- }
- restConf, err := cmdConf.ClientConfig()
- if err != nil {
- return err
- }
- restConf.GroupVersion = &schema.GroupVersion{
- Group: "api",
- Version: "v1",
- }
- restConf.NegotiatedSerializer = runtime.NewSimpleNegotiatedSerializer(runtime.SerializerInfo{})
- p.RestConf = restConf
- clientset, err := kubernetes.NewForConfig(restConf)
- if err != nil {
- return err
- }
- p.Clientset = clientset
- restClient, err := rest.RESTClientFor(restConf)
- if err != nil {
- return err
- }
- p.RestClient = restClient
- return nil
- }
- type podSimple struct {
- Name string
- ContainerNames []string
- }
- func getPods(client *api.Client, namespace, releaseName string) ([]podSimple, error) {
- pID := cliConf.Project
- cID := cliConf.Cluster
- resp, err := client.GetK8sAllPods(context.TODO(), pID, cID, namespace, releaseName)
- if err != nil {
- return nil, err
- }
- pods := *resp
- res := make([]podSimple, 0)
- for _, pod := range pods {
- if pod.Status.Phase == v1.PodRunning {
- containerNames := make([]string, 0)
- for _, container := range pod.Spec.Containers {
- containerNames = append(containerNames, container.Name)
- }
- res = append(res, podSimple{
- Name: pod.ObjectMeta.Name,
- ContainerNames: containerNames,
- })
- }
- }
- return res, nil
- }
- func executeRun(config *PorterRunSharedConfig, namespace, name, container string, args []string) error {
- req := config.RestClient.Post().
- Resource("pods").
- Name(name).
- Namespace(namespace).
- SubResource("exec")
- for _, arg := range args {
- req.Param("command", arg)
- }
- req.Param("stdin", "true")
- req.Param("stdout", "true")
- req.Param("tty", "true")
- req.Param("container", container)
- t := term.TTY{
- In: os.Stdin,
- Out: os.Stdout,
- Raw: true,
- }
- size := t.GetSize()
- sizeQueue := t.MonitorSize(size)
- return t.Safe(func() error {
- exec, err := remotecommand.NewSPDYExecutor(config.RestConf, "POST", req.URL())
- if err != nil {
- return err
- }
- return exec.Stream(remotecommand.StreamOptions{
- Stdin: os.Stdin,
- Stdout: os.Stdout,
- Stderr: os.Stderr,
- Tty: true,
- TerminalSizeQueue: sizeQueue,
- })
- })
- }
- func executeRunEphemeral(config *PorterRunSharedConfig, namespace, name, container string, args []string) error {
- existing, err := getExistingPod(config, name, namespace)
- if err != nil {
- return err
- }
- newPod, err := createEphemeralPodFromExisting(config, existing, container, args)
- if err != nil {
- return err
- }
- podName := newPod.ObjectMeta.Name
- // delete the ephemeral pod no matter what
- defer deletePod(config, podName, namespace)
- color.New(color.FgYellow).Printf("Waiting for pod %s to be ready...", podName)
- if err = waitForPod(config, newPod); err != nil {
- color.New(color.FgRed).Println("failed")
- return handlePodAttachError(err, config, namespace, podName, container)
- }
- err = checkForPodDeletionCronJob(config)
- if err != nil {
- return err
- }
- // refresh pod info for latest status
- newPod, err = config.Clientset.CoreV1().
- Pods(newPod.Namespace).
- Get(context.Background(), newPod.Name, metav1.GetOptions{})
- // pod exited while we were waiting. maybe an error maybe not.
- // we dont know if the user wanted an interactive shell or not.
- // if it was an error the logs hopefully say so.
- if isPodExited(newPod) {
- color.New(color.FgGreen).Println("complete!")
- var writtenBytes int64
- writtenBytes, _ = pipePodLogsToStdout(config, namespace, podName, container, false)
- if verbose || writtenBytes == 0 {
- color.New(color.FgYellow).Println("Could not get logs. Pod events:")
- pipeEventsToStdout(config, namespace, podName, container, false)
- }
- return nil
- }
- color.New(color.FgGreen).Println("ready!")
- color.New(color.FgYellow).Println("Attempting connection to the container. If you don't see a command prompt, try pressing enter.")
- req := config.RestClient.Post().
- Resource("pods").
- Name(podName).
- Namespace(namespace).
- SubResource("attach")
- req.Param("stdin", "true")
- req.Param("stdout", "true")
- req.Param("tty", "true")
- req.Param("container", container)
- t := term.TTY{
- In: os.Stdin,
- Out: os.Stdout,
- Raw: true,
- }
- size := t.GetSize()
- sizeQueue := t.MonitorSize(size)
- if err = t.Safe(func() error {
- exec, err := remotecommand.NewSPDYExecutor(config.RestConf, "POST", req.URL())
- if err != nil {
- return err
- }
- return exec.Stream(remotecommand.StreamOptions{
- Stdin: os.Stdin,
- Stdout: os.Stdout,
- Stderr: os.Stderr,
- Tty: true,
- TerminalSizeQueue: sizeQueue,
- })
- }); err != nil {
- // ugly way to catch no TTY errors, such as when running command "echo \"hello\""
- return handlePodAttachError(err, config, namespace, podName, container)
- }
- if verbose {
- color.New(color.FgYellow).Println("Pod events:")
- pipeEventsToStdout(config, namespace, podName, container, false)
- }
- return err
- }
- func checkForPodDeletionCronJob(config *PorterRunSharedConfig) error {
- // try and create the cron job and all of the other required resources as necessary,
- // starting with the service account, then role and then a role binding
- err := checkForServiceAccount(config)
- if err != nil {
- return err
- }
- err = checkForClusterRole(config)
- if err != nil {
- return err
- }
- err = checkForRoleBinding(config)
- if err != nil {
- return err
- }
- namespaces, err := config.Clientset.CoreV1().Namespaces().List(context.Background(), metav1.ListOptions{})
- if err != nil {
- return err
- }
- for _, namespace := range namespaces.Items {
- cronJobs, err := config.Clientset.BatchV1().CronJobs(namespace.Name).List(
- context.Background(), metav1.ListOptions{},
- )
- if err != nil {
- return err
- }
- if namespace.Name == "default" {
- for _, cronJob := range cronJobs.Items {
- if cronJob.Name == "porter-ephemeral-pod-deletion-cronjob" {
- return nil
- }
- }
- } else {
- for _, cronJob := range cronJobs.Items {
- if cronJob.Name == "porter-ephemeral-pod-deletion-cronjob" {
- err = config.Clientset.BatchV1().CronJobs(namespace.Name).Delete(
- context.Background(), cronJob.Name, metav1.DeleteOptions{},
- )
- if err != nil {
- return err
- }
- }
- }
- }
- }
- // create the cronjob
- cronJob := &batchv1.CronJob{
- ObjectMeta: metav1.ObjectMeta{
- Name: "porter-ephemeral-pod-deletion-cronjob",
- },
- Spec: batchv1.CronJobSpec{
- Schedule: "0 * * * *",
- JobTemplate: batchv1.JobTemplateSpec{
- Spec: batchv1.JobSpec{
- Template: v1.PodTemplateSpec{
- Spec: v1.PodSpec{
- ServiceAccountName: "porter-ephemeral-pod-deletion-service-account",
- RestartPolicy: v1.RestartPolicyNever,
- Containers: []v1.Container{
- {
- Name: "ephemeral-pods-manager",
- Image: "public.ecr.aws/o1j4x7p4/porter-ephemeral-pods-manager:latest",
- ImagePullPolicy: v1.PullAlways,
- Args: []string{"delete"},
- },
- },
- },
- },
- },
- },
- },
- }
- _, err = config.Clientset.BatchV1().CronJobs("default").Create(
- context.Background(), cronJob, metav1.CreateOptions{},
- )
- if err != nil {
- return err
- }
- return nil
- }
- func checkForServiceAccount(config *PorterRunSharedConfig) error {
- namespaces, err := config.Clientset.CoreV1().Namespaces().List(context.Background(), metav1.ListOptions{})
- if err != nil {
- return err
- }
- for _, namespace := range namespaces.Items {
- serviceAccounts, err := config.Clientset.CoreV1().ServiceAccounts(namespace.Name).List(
- context.Background(), metav1.ListOptions{},
- )
- if err != nil {
- return err
- }
- if namespace.Name == "default" {
- for _, svcAccount := range serviceAccounts.Items {
- if svcAccount.Name == "porter-ephemeral-pod-deletion-service-account" {
- return nil
- }
- }
- } else {
- for _, svcAccount := range serviceAccounts.Items {
- if svcAccount.Name == "porter-ephemeral-pod-deletion-service-account" {
- err = config.Clientset.CoreV1().ServiceAccounts(namespace.Name).Delete(
- context.Background(), svcAccount.Name, metav1.DeleteOptions{},
- )
- if err != nil {
- return err
- }
- }
- }
- }
- }
- serviceAccount := &v1.ServiceAccount{
- ObjectMeta: metav1.ObjectMeta{
- Name: "porter-ephemeral-pod-deletion-service-account",
- },
- }
- _, err = config.Clientset.CoreV1().ServiceAccounts("default").Create(
- context.Background(), serviceAccount, metav1.CreateOptions{},
- )
- if err != nil {
- return err
- }
- return nil
- }
- func checkForClusterRole(config *PorterRunSharedConfig) error {
- roles, err := config.Clientset.RbacV1().ClusterRoles().List(
- context.Background(), metav1.ListOptions{},
- )
- if err != nil {
- return err
- }
- for _, role := range roles.Items {
- if role.Name == "porter-ephemeral-pod-deletion-cluster-role" {
- return nil
- }
- }
- role := &rbacv1.ClusterRole{
- ObjectMeta: metav1.ObjectMeta{
- Name: "porter-ephemeral-pod-deletion-cluster-role",
- },
- Rules: []rbacv1.PolicyRule{
- {
- APIGroups: []string{""},
- Resources: []string{"pods"},
- Verbs: []string{"list", "delete"},
- },
- {
- APIGroups: []string{""},
- Resources: []string{"namespaces"},
- Verbs: []string{"list"},
- },
- },
- }
- _, err = config.Clientset.RbacV1().ClusterRoles().Create(
- context.Background(), role, metav1.CreateOptions{},
- )
- if err != nil {
- return err
- }
- return nil
- }
- func checkForRoleBinding(config *PorterRunSharedConfig) error {
- bindings, err := config.Clientset.RbacV1().ClusterRoleBindings().List(
- context.Background(), metav1.ListOptions{},
- )
- if err != nil {
- return err
- }
- for _, binding := range bindings.Items {
- if binding.Name == "porter-ephemeral-pod-deletion-cluster-rolebinding" {
- return nil
- }
- }
- binding := &rbacv1.ClusterRoleBinding{
- ObjectMeta: metav1.ObjectMeta{
- Name: "porter-ephemeral-pod-deletion-cluster-rolebinding",
- },
- RoleRef: rbacv1.RoleRef{
- APIGroup: "rbac.authorization.k8s.io",
- Kind: "ClusterRole",
- Name: "porter-ephemeral-pod-deletion-cluster-role",
- },
- Subjects: []rbacv1.Subject{
- {
- APIGroup: "",
- Kind: "ServiceAccount",
- Name: "porter-ephemeral-pod-deletion-service-account",
- Namespace: "default",
- },
- },
- }
- _, err = config.Clientset.RbacV1().ClusterRoleBindings().Create(
- context.Background(), binding, metav1.CreateOptions{},
- )
- if err != nil {
- return err
- }
- return nil
- }
- func waitForPod(config *PorterRunSharedConfig, pod *v1.Pod) error {
- var (
- w watch.Interface
- err error
- ok bool
- )
- // immediately after creating a pod, the API may return a 404. heuristically 1
- // second seems to be plenty.
- watchRetries := 3
- for i := 0; i < watchRetries; i++ {
- selector := fields.OneTermEqualSelector("metadata.name", pod.Name).String()
- w, err = config.Clientset.CoreV1().
- Pods(pod.Namespace).
- Watch(context.Background(), metav1.ListOptions{FieldSelector: selector})
- if err == nil {
- break
- }
- time.Sleep(time.Second)
- }
- if err != nil {
- return err
- }
- defer w.Stop()
- for {
- select {
- case <-time.Tick(time.Second):
- // poll every second in case we already missed the ready event while
- // creating the listener.
- pod, err = config.Clientset.CoreV1().
- Pods(pod.Namespace).
- Get(context.Background(), pod.Name, metav1.GetOptions{})
- if isPodReady(pod) || isPodExited(pod) {
- return nil
- }
- case evt := <-w.ResultChan():
- pod, ok = evt.Object.(*v1.Pod)
- if !ok {
- return fmt.Errorf("unexpected object type: %T", evt.Object)
- }
- if isPodReady(pod) || isPodExited(pod) {
- return nil
- }
- case <-time.After(time.Second * 10):
- return errors.New("timed out waiting for pod")
- }
- }
- }
- func isPodReady(pod *v1.Pod) bool {
- ready := false
- conditions := pod.Status.Conditions
- for i := range conditions {
- if conditions[i].Type == v1.PodReady {
- ready = pod.Status.Conditions[i].Status == v1.ConditionTrue
- }
- }
- return ready
- }
- func isPodExited(pod *v1.Pod) bool {
- return pod.Status.Phase == v1.PodSucceeded || pod.Status.Phase == v1.PodFailed
- }
- func handlePodAttachError(err error, config *PorterRunSharedConfig, namespace, podName, container string) error {
- if verbose {
- color.New(color.FgYellow).Fprintf(os.Stderr, "Error: %s\n", err)
- }
- color.New(color.FgYellow).Fprintln(os.Stderr, "Could not open a shell to this container. Container logs:")
- var writtenBytes int64
- writtenBytes, _ = pipePodLogsToStdout(config, namespace, podName, container, false)
- if verbose || writtenBytes == 0 {
- color.New(color.FgYellow).Fprintln(os.Stderr, "Could not get logs. Pod events:")
- pipeEventsToStdout(config, namespace, podName, container, false)
- }
- return err
- }
- func pipePodLogsToStdout(config *PorterRunSharedConfig, namespace, name, container string, follow bool) (int64, error) {
- podLogOpts := v1.PodLogOptions{
- Container: container,
- Follow: follow,
- }
- req := config.Clientset.CoreV1().Pods(namespace).GetLogs(name, &podLogOpts)
- podLogs, err := req.Stream(
- context.Background(),
- )
- if err != nil {
- return 0, err
- }
- defer podLogs.Close()
- return io.Copy(os.Stdout, podLogs)
- }
- func pipeEventsToStdout(config *PorterRunSharedConfig, namespace, name, container string, follow bool) error {
- // update the config in case the operation has taken longer than token expiry time
- config.setSharedConfig()
- // creates the clientset
- resp, err := config.Clientset.CoreV1().Events(namespace).List(
- context.TODO(),
- metav1.ListOptions{
- FieldSelector: fmt.Sprintf("involvedObject.name=%s,involvedObject.namespace=%s", name, namespace),
- },
- )
- if err != nil {
- return err
- }
- for _, event := range resp.Items {
- color.New(color.FgRed).Println(event.Message)
- }
- return nil
- }
- func getExistingPod(config *PorterRunSharedConfig, name, namespace string) (*v1.Pod, error) {
- return config.Clientset.CoreV1().Pods(namespace).Get(
- context.Background(),
- name,
- metav1.GetOptions{},
- )
- }
- func deletePod(config *PorterRunSharedConfig, name, namespace string) error {
- // update the config in case the operation has taken longer than token expiry time
- config.setSharedConfig()
- err := config.Clientset.CoreV1().Pods(namespace).Delete(
- context.Background(),
- name,
- metav1.DeleteOptions{},
- )
- if err != nil {
- color.New(color.FgRed).Fprintf(os.Stderr, "Could not delete ephemeral pod: %s\n", err.Error())
- return err
- }
- color.New(color.FgGreen).Println("Sucessfully deleted ephemeral pod")
- return nil
- }
- func createEphemeralPodFromExisting(
- config *PorterRunSharedConfig,
- existing *v1.Pod,
- container string,
- args []string,
- ) (*v1.Pod, error) {
- newPod := existing.DeepCopy()
- // only copy the pod spec, overwrite metadata
- newPod.ObjectMeta = metav1.ObjectMeta{
- Name: strings.ToLower(fmt.Sprintf("%s-copy-%s", existing.ObjectMeta.Name, utils.String(4))),
- Namespace: existing.ObjectMeta.Namespace,
- }
- newPod.Status = v1.PodStatus{}
- // set restart policy to never
- newPod.Spec.RestartPolicy = v1.RestartPolicyNever
- // change the command in the pod to the passed in pod command
- cmdRoot := args[0]
- cmdArgs := make([]string, 0)
- // annotate with the ephemeral pod tag
- newPod.Labels = make(map[string]string)
- newPod.Labels["porter/ephemeral-pod"] = "true"
- if len(args) > 1 {
- cmdArgs = args[1:]
- }
- for i := 0; i < len(newPod.Spec.Containers); i++ {
- if newPod.Spec.Containers[i].Name == container {
- newPod.Spec.Containers[i].Command = []string{cmdRoot}
- newPod.Spec.Containers[i].Args = cmdArgs
- newPod.Spec.Containers[i].TTY = true
- newPod.Spec.Containers[i].Stdin = true
- newPod.Spec.Containers[i].StdinOnce = true
- var newCpu int
- if cpuMilli != 0 {
- newCpu = cpuMilli
- } else if newPod.Spec.Containers[i].Resources.Requests.Cpu() != nil && newPod.Spec.Containers[i].Resources.Requests.Cpu().MilliValue() > 500 {
- newCpu = 500
- }
- if newCpu != 0 {
- newPod.Spec.Containers[i].Resources.Limits[v1.ResourceCPU] = resource.MustParse(fmt.Sprintf("%dm", newCpu))
- newPod.Spec.Containers[i].Resources.Requests[v1.ResourceCPU] = resource.MustParse(fmt.Sprintf("%dm", newCpu))
- for j := 0; j < len(newPod.Spec.Containers[i].Env); j++ {
- if newPod.Spec.Containers[i].Env[j].Name == "PORTER_RESOURCES_CPU" {
- newPod.Spec.Containers[i].Env[j].Value = fmt.Sprintf("%dm", newCpu)
- break
- }
- }
- }
- var newMemory int
- if memoryMi != 0 {
- newMemory = memoryMi
- } else if newPod.Spec.Containers[i].Resources.Requests.Memory() != nil && newPod.Spec.Containers[i].Resources.Requests.Memory().Value() > 1000*1024*1024 {
- newMemory = 1000
- }
- if newMemory != 0 {
- newPod.Spec.Containers[i].Resources.Limits[v1.ResourceMemory] = resource.MustParse(fmt.Sprintf("%dMi", newMemory))
- newPod.Spec.Containers[i].Resources.Requests[v1.ResourceMemory] = resource.MustParse(fmt.Sprintf("%dMi", newMemory))
- for j := 0; j < len(newPod.Spec.Containers[i].Env); j++ {
- if newPod.Spec.Containers[i].Env[j].Name == "PORTER_RESOURCES_RAM" {
- newPod.Spec.Containers[i].Env[j].Value = fmt.Sprintf("%dMi", newMemory)
- break
- }
- }
- }
- }
- // remove health checks and probes
- newPod.Spec.Containers[i].LivenessProbe = nil
- newPod.Spec.Containers[i].ReadinessProbe = nil
- newPod.Spec.Containers[i].StartupProbe = nil
- }
- newPod.Spec.NodeName = ""
- // create the pod and return it
- return config.Clientset.CoreV1().Pods(existing.ObjectMeta.Namespace).Create(
- context.Background(),
- newPod,
- metav1.CreateOptions{},
- )
- }
|