Test and deploy a Python application with GitLab CI/CD

原文:https://docs.gitlab.com/ee/ci/examples/test-and-deploy-python-application-to-heroku.html

Test and deploy a Python application with GitLab CI/CD

本示例将指导您如何在 Python 应用程序中运行测试,以及如何将其自动部署为 Heroku 应用程序.

您也可以查看或生成完整的示例源 .

Configure project

这是此项目的.gitlab-ci.yml文件的外观:

  1. stages:
  2. - test
  3. - deploy
  4. test:
  5. stage: test
  6. script:
  7. # this configures Django application to use attached postgres database that is run on `postgres` host
  8. - export DATABASE_URL=postgres://postgres:@postgres:5432/python-test-app
  9. - apt-get update -qy
  10. - apt-get install -y python-dev python-pip
  11. - pip install -r requirements.txt
  12. - python manage.py test
  13. staging:
  14. stage: deploy
  15. script:
  16. - apt-get update -qy
  17. - apt-get install -y ruby-dev
  18. - gem install dpl
  19. - dpl --provider=heroku --app=gitlab-ci-python-test-staging --api-key=$HEROKU_STAGING_API_KEY
  20. only:
  21. - master
  22. production:
  23. stage: deploy
  24. script:
  25. - apt-get update -qy
  26. - apt-get install -y ruby-dev
  27. - gem install dpl
  28. - dpl --provider=heroku --app=gitlab-ci-python-test-prod --api-key=$HEROKU_PRODUCTION_API_KEY
  29. only:
  30. - tags

这个项目有三个工作:

  • test -用于测试 Django 应用程序.
  • staging -用于每次推送到master分支时自动部署登台环境.
  • production -用于为每个创建的标签自动部署生产环境.

Store API keys

您需要在 GitLab 项目的“设置”>” CI / CD”>”环境变量”中创建两个变量:

  • HEROKU_STAGING_API_KEY -Heroku API 密钥,用于部署登台应用程序.
  • HEROKU_PRODUCTION_API_KEY -Heroku API 密钥,用于部署生产应用程序.

在” 管理帐户”中找到您的 Heroku API 密钥.

Create Heroku application

对于每个环境,您都需要创建一个新的 Heroku 应用程序. 您可以通过仪表板执行此操作.

Create Runner

首先安装Docker Engine .

要构建此项目,您还需要安装GitLab Runner . 您可以使用gitlab.com上的公共跑步者,也可以注册自己的跑步者:

  1. cat > /tmp/test-config.template.toml << EOF [[runners]]
  2. [runners.docker]
  3. [[runners.docker.services]]
  4. name = "postgres:latest" EOF gitlab-runner register \
  5. --non-interactive \
  6. --url "https://gitlab.com/" \
  7. --registration-token "PROJECT_REGISTRATION_TOKEN" \
  8. --description "python-3.5" \
  9. --executor "docker" \
  10. --template-config /tmp/test-config.template.toml \
  11. --docker-image python:3.5

使用上面的命令,您将创建一个使用python:3.5图像并使用PostgreSQL数据库的运行器.

要访问 PostgreSQL 数据库,请以没有密码的用户postgres身份连接到host: postgres .