如何在不提交 git 的情况下在 circleci 中传递环境变量

How to pass environment variables in circleci without committing to git

我正在做一个简单的项目。

我正在为我的 CI/CD 管道使用 circleci。

当我推送构建 运行s 的提交时,测试 运行 如果它们通过,则应用程序将打包到 docker 图像中。

然后图像被推送到 dockerhub,从这里我可以在 docker compose 或 kubernetes 或其他任何东西中将图像拉下来。

这一切都很完美。

我的问题是 如何 可以将 docker-hub 凭据传递给 circleci,而不通过提交将它们暴露给 public到源代码管理?

在过去的上一个项目中,我觉得我将一个无服务器框架项目部署到了​​ AWS 上,为此我确信我将我的 AWS 证书存储在 circleci 的某个地方,这样我就可以在我的 . circleci/config.yml.

这是很久以前的事了,我找不到怎么做。

谁能用这个给我指明正确的方向?

我提供了我的 config.yml 只是为了更简洁地说明我的工作流程。

version: 2
jobs: 
  build: 
    docker: 
      - image: circleci/golang:1.11
 
    environment:
      TEST_RESULTS: /tmp/test-results

    steps: 
      - checkout
      - run: mkdir -p $TEST_RESULTS

      - restore_cache: 
          keys:
            - v1-pkg-cache
      
      - run: go get github.com/lib/pq
      - run: go get github.com/mattes/migrate
      - run: go get github.com/jstemmer/go-junit-report
      - run: go mod download
      - run: go build 

      - run:
          name: Run unit tests
          command: go test ./...

      - save_cache:
          key: v1-pkg-cache
          paths:
            - "/go/pkg"

      - run:
          name: Start service
          command: go run main.go
          background: true 

      - store_artifacts: 
          path: /tmp/test-results
          destination: raw-test-output

      - store_test_results: 
          path: /tmp/test-results

       - setup_remote_docker:
           docker_layer_caching: true

      # TODO: need to pull docker-hub credentials safely from environment variables and then the docker image can be pushed up to dockerhub.
       - run:
           name: build and push container
           command: |
             docker build -t myrepo/im-projects:LATEST -t myrepo/im-projects:v0.0.1 .
             echo $DOCKER_PWD | docker login -u username -p password
             docker push myrepo/im-projects:LATEST

您可以通过 UI 设置私有环境变量。 https://circleci.com/docs/2.0/env-vars/#setting-an-environment-variable-in-a-project