第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

無法在 Alpine 容器中使用 os.exec 通過 shell 運(yùn)行 kubectl 命令

無法在 Alpine 容器中使用 os.exec 通過 shell 運(yùn)行 kubectl 命令

Go
尚方寶劍之說 2022-06-27 15:54:16
我正在嘗試從我的容器中運(yùn)行一些 kubectl 命令。package mainimport (    "fmt"    "os/exec")    op, err := GetPods("test-containers", "qa")    if err != nil {        fmt.Printf("\nError: %v", err)    }    fmt.Printf(op)func GetPods(name, namespace string) (podName string, err error) {    fmt.Println("Get pod names ....")    cmd := "kubectl get pods -n " + namespace + " -o wide | grep " + name + " | awk '{print $1}' "    cmnd, err := exec.Command("sh", "-c", cmd).Output()    if err != nil {        fmt.Println("Failed to find pod name." + string(cmnd))    }    podName = string(cmnd)    return}我的多級(jí) Dockerfile 基于 Alpine3.6 并安裝了 kubectl 二進(jìn)制文件。FROM alpine:3.6RUN apk add --update curl wget ca-certificates unzip python py-pip openssl bash && \    apk --update add openssh-client && \    apk --update add --virtual build-dependencies python-dev libffi-dev openssl-dev build-base && \    apk add --no-cache --upgrade bash && \    pip install --upgrade pip cffi && \    pip install awscli && \    wget  https://storage.googleapis.com/kubernetes-release/release/v1.15.1/bin/linux/amd64/kubectl && \    chmod u+x kubectl && mv kubectl /bin/kubectl && \    apk del build-dependencies && \    rm -rf /var/cache/apk/*ENV HOME=/go/app/WORKDIR /go/appCOPY --from=go-container-build /go/app/ .ENTRYPOINT ["bash"]當(dāng)我將容器作為 pod 運(yùn)行并嘗試執(zhí)行命令時(shí);我總是遇到以下錯(cuò)誤:cmd:  kubectl -n qa get pods -o wide | grep test-containers | awk '{print $1}'Failed to find pod name.exit status 2/bin/sh: illegal option -我也嘗試過使用 os.exec.Command() exec.Command("/bin/sh", "-c", cmd),exec.Command("/bin/bash", "-c", cmd)但我遇到了類似的錯(cuò)誤。Failed to find pod name.exit status 2/bin/sh: illegal option -我也直接試過cmnd := exec.Command(cmd);但我得到了錯(cuò)誤:Failed to find pod name.fork/exec kubectl -n qa get pods -o wide | grep test-containers | awk '{print $1}':executable file not found in $PATH我已經(jīng)在容器中安裝了 bash,當(dāng)我直接在容器 shell 上運(yùn)行命令時(shí),我總是得到輸出。
查看完整描述

1 回答

?
偶然的你

TA貢獻(xiàn)1841條經(jīng)驗(yàn) 獲得超3個(gè)贊

/bin/sh: 非法選項(xiàng) -


是因?yàn)?carg 解析器將其解釋為/bin/sh "- "- 具有諷刺意味的是(?)您的golang代碼段是正確的,但是您粘貼的代碼部分和問題的癥結(jié)顯示了錯(cuò)誤的語法


無需涉及busybox或其他任何東西,就可以輕松地重現(xiàn)這一點(diǎn)


package main

import (

    "fmt"

    "os/exec"

)

func main() {

    // c, err := exec.Command("/bin/sh", "-c", "echo -n hello | grep lo").Output()

    c, err := exec.Command("/bin/sh", "-c ", "echo -n hello | grep lo").Output()

    if err != nil {

        ee := err.(*exec.ExitError)

        panic(fmt.Errorf("c is %q and err is %q and stderr is %q", string(c), err, string(ee.Stderr)))

    }

    fmt.Println("OK")

}

結(jié)果,panic: c is "" and err is "exit status 2" and stderr is "/bin/sh: - : invalid option\n如果交換注釋行,它會(huì)打印OK


查看完整回答
反對(duì) 回復(fù) 2022-06-27
  • 1 回答
  • 0 關(guān)注
  • 234 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)