yidinghan / blog

文章记录
28 stars 2 forks source link

Gitlab ChangeLog 9 4 #15

Open yidinghan opened 6 years ago

yidinghan commented 6 years ago

Article Reference Link

Release Article: https://about.gitlab.com/2017/07/22/gitlab-9-4-released/

New Navigation

全新的导览界面

new-navigation

Group-level Secret Variables

在这之前,做 CI/CD 很容易碰上跨项目重复利用的环境变量

往往也只能在第一次配的时候,copy and paste

通过这一特性,可以最终解决这个问题啦,直接配置一次,全群组里的项目通用

group-level-secret-variables

一个使用场景,就是在 8.14 发布的 DOCKER_AUTH_CONFIG 变量配置(介绍在这里

只要配置的群组级别的 DOCKER_AUTH_CONFIG ,就可以在全部项目直接对私有的仓库 docker pull/push

Variables in Pipeline Schedules

有些变量想要在周期 pipeline 中特别配置的,就可以通过这个特性实现啦

variables-in-pipeline-schedules

New Cache Policy for CI/CD Configuration

对于 job 缓存,基本行为方式都是在开始的时候拉取下来,在结束的时候提交上去

但是对于有些 job,是根本用不上提交缓存,或者是拉取缓存

于是通过这两个 .gitlab-ci.yml 配置项,就可以减少 job 的运行时间,从而加速 pipeline 的执行

更多缓存策略说明,在这里

Extended Docker Configuration for CI/CD

使用 docker 作为 runner 的时候,不仅可以使用指定的镜像配置 image,还可以 services

image: "registry.example.com/my/image:latest"

services:
  - postgresql:9.4
  - redis:latest

但是这还远远不够,有时有还会有一些不方便的地方

这一版本中发布的特性,就可以解决这些问题

image:
  name: ruby:2.2
  entrypoint: ["/bin/bash"]

services:
  - name: my-postgres:9.4
    alias: db-postgres-old
    entrypoint: ["/usr/local/bin/db-postgres"]
    command: ["start"]
  - name: my-postgres:9.5
    alias: db-postgres-new
    entrypoint: ["/usr/local/bin/db-postgres"]
    command: ["start"]

更多 Docker 参数说明,在这里

The End