gitlab CI:加载密钥时出错:格式无效

mat*_*un7 2 ssh amazon-web-services gitlab-ci

我被困在这个问题上 2 天了。

从我的生产服务器尝试使用 id_rsa.pub 和 id_rsa,仍然是同样的错误...... SSH_PRIVATE_KEY 是我在 GitLab 的 CI/CD 设置中创建的变量。

编辑:未受保护,未屏蔽。

# This file is a template, and might need editing before it works on your project.
# Official framework image. Look for the different tagged releases at:
# https://hub.docker.com/r/library/node/tags/
image: node:alpine

stages:
  - deploy

deploy:
  stage: deploy
  before_script:
    # Install ssh-agent if not already installed, it is required by Docker.
    # (change apt-get to yum if you use a CentOS-based image)
    - 'which ssh-agent || ( apk add --update openssh )'

    # Add bash
    - apk add --update bash

    # Add git
    - apk add --update git

    # Run ssh-agent (inside the build environment)
    - eval $(ssh-agent -s)

    # Add the SSH key stored in SSH_PRIVATE_KEY variable to the agent store
    - echo "$SSH_PRIVATE_KEY"
    - echo "$SSH_PRIVATE_KEY" | ssh-add -

    # For Docker builds disable host key checking. Be aware that by adding that
    # you are suspectible to man-in-the-middle attacks.
    # WARNING: Use this only with the Docker executor, if you use it with shell
    # you will overwrite your user's SSH config.
    - mkdir -p ~/.ssh
    - '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
    # In order to properly check the server's host key, assuming you created the
    # SSH_SERVER_HOSTKEYS variable previously, uncomment the following two lines
    # instead.
    # - mkdir -p ~/.ssh
    # - '[[ -f /.dockerenv ]] && echo "$SSH_SERVER_HOSTKEYS" > ~/.ssh/known_hosts'
  script:
  - npm i -g pm2
  - pm2 deploy ecosystem.config.js production
  only:
  - master
Run Code Online (Sandbox Code Playgroud)

当我运行管道时,我仍然收到此错误...

$ echo "$SSH_PRIVATE_KEY" | ssh-add -
Error loading key "(stdin)": invalid format
Run Code Online (Sandbox Code Playgroud)

能否请你帮忙 ?我很无助,无能为力,无望加载...

非常感谢 !

Von*_*onC 9

SSH_PRIVATE_KEY 是我在 GitLab 的 CI/CD 设置中创建的变量。

这是记录在这里

在值字段中粘贴您之前创建的私钥的内容。

因此,请确保您已粘贴id_rsa完整内容,包括-----BEGIN RSA PRIVATE KEY----------END RSA PRIVATE KEY-----(带有 5 个 final -
(并且,正如MrDuk 评论的那样,最后一个换行符)

Stephane Paquet在评论中补充道:

cat ~/.ssh/id_rsa | pbcopy 
Run Code Online (Sandbox Code Playgroud)

以确保您复制了所有必需的信息。

  • 该死 !我没有得到“BEGIN”是在这行*之前*...非常感谢! (2认同)
  • @StephanePaquet 感谢您的反馈。好点子。我已将您的评论包含在答案中以获得更多可见性。 (2认同)