在kubernetes中创建一个可以运行gnu屏幕的pod

时间:2017-10-05 01:33:32

标签: bash kubernetes dockerfile pty

我正在创建一个长期的跳转来在我的kubernetes集群内部运行。它使用主文件夹的EBS卷,保存我的代码的重要副本,并使我能够快速访问常规行为。问题是我无法使用GNU screen来创建类似的长期会话。

这是我的Dockerfile:

FROM ubuntu:zesty

ENV KUBECTL_VERSION=v1.7.6

RUN apt-get update && \
    apt-get install -y \
      htop vim sysstat \
      build-essential make \
      ruby ruby-dev rake \
      postgresql-client libpq-dev \
      curl wget \
      python python-pip && \
    pip install awscli && \
    gem install --no-rdoc --no-ri bundler
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/$KUBECTL_VERSION/bin/linux/amd64/kubectl && \
    chmod a+x kubectl && \
    mv kubectl /usr/local/bin/kubectl
ADD dotfiles /root-dotfiles
ADD code /root-code
ADD docker-entrypoint.sh /docker-entrypoint.sh

以下是我如何部署它:

apiVersion: extensions/v1beta1
kind: Deployment
metadata:
  labels:
    app: doit
    purpse: jumpbox
  name: doit
  namespace: default
spec:
  replicas: 1
  revisionHistoryLimit: 2
  selector:
    matchLabels:
      app: doit
      purpose: jumpbox
  template:
    metadata:
      labels:
        app: doit
        purpose: jumpbox
    spec:
      containers:
      - image: 123.dkr.ecr.eu-central-1.amazonaws.com/doit:latest
        imagePullPolicy: Always
        name: doit
        command: ["sleep", "infinity"]
        workingDir: /root
        env:
        - name: TERM
          value: xterm
        volumeMounts:
        - mountPath: /root
          subPath: root-homedir
          name: doit-home
      volumes:
        - name: doit-home
          persistentVolumeClaim:
            claimName: doit-home
      restartPolicy: Always
      securityContext: {}
      terminationGracePeriodSeconds: 1

但当我kubectl exec进入容器并尝试创建一个屏幕时:

root@doit-2561276907-kl2h6:~# screen -S asdf
Cannot open your terminal '' - please check.

我可以通过以下方式解决这个问题:

root@doit-2561276907-kl2h6:~# script /dev/null
Script started, file is /dev/null
# bash
root@doit-2561276907-kl2h6:~# screen -S asdf
# now inside of the screen

此外,这是我连接到Pod的方式:

function doit {
  doit_pods=$(kubectl get pods -l 'app==doit'  -o go-template --template '{{range .items}}{{.metadata.name}}{{"\n"}}{{end}}')
  kubectl exec -it $doit_pods bash
}

因此,我正在做kubectl exec -it

但是我不希望这个跳转盒实例的所有用户都必须运行脚本并切换回bash。如何创建已为screen正确配置的Pod?

1 个答案:

答案 0 :(得分:2)

我尝试使用centos图像,但需要检查ubuntu图像。

kubectl run -it screentest --image=centos -- bash
kubectl exec -it screentest-cbd49447f-286wq -- bash
yum -y install screen
screen

在ubuntu中测试过它,它对我有用。

kubectl run -it ubuntuest --image=ubuntu -- bash
apt-get update -qq && apt-get install screen -y
screen

也尝试使用kubectl exec -it ubuntuest-78df75fbb-9sk6f -- bash