Skip to content

Releases: SocialGouv/gitlab-ci-yml

v3.0.0

10 Dec 06:28
Compare
Choose a tag to compare

3.0.0 (2019-12-10)

Features

  • autodevops: level 1 simple apps (#9) (cfef1ee)
  • hpa: add ability to use horizontal pod autoscaler (#10) (8fffcd8)

BREAKING CHANGES

  • autodevops: feat(autodevops): level 1 simple apps
    • Might break namespace creation
    • Might break register jobs

v2.2.1

06 Dec 06:54
Compare
Choose a tag to compare

2.2.1 (2019-12-06)

Bug Fixes

  • bump to socialgouv/docker/*:0.18.0 (1301272)

v2.2.0

27 Nov 11:55
Compare
Choose a tag to compare

2.2.0 (2019-11-27)

Features

  • add delete useless k8s ns stage (1d727b7)

v2.1.0

25 Nov 15:45
Compare
Choose a tag to compare

2.1.0 (2019-11-25)

Features

  • nodejs_chart: update chart to socialgouv/nodejs#2.8.0 (9e6ffa3)

v2.0.0

24 Nov 17:06
Compare
Choose a tag to compare

2.0.0 (2019-11-24)

Features

  • nodejs_chart: empty HELM_RENDER_ARGS (e335c1c)

BREAKING CHANGES

  • nodejs_chart: feat(nodejs_chart): empty HELM_RENDER_ARGS
    • No args are given by default (expect the --values)
      We recommend that in your project, you at least set :

      .deploy_job:
        extends: .base_deploy_nodejs_chart_stage
        # [...]
        before_script:
          - *resolve_env_domain
          - HOST=${FRONTEND_HOST}
          - HELM_RENDER_ARGS="
              --set image.tag=${CI_COMMIT_SHA}
              --set ingress.hosts[0].host=${HOST}
              --set ingress.tls[0].hosts[0]=${HOST}"
          - |
            if [[ "${BRANCH_NAME}" = "master" ]]; then
              HELM_RENDER_ARGS="
                ${HELM_RENDER_ARGS}
                --set ingress.annotations."certmanager\.k8s\.io/cluster-issuer"=letsencrypt-prod
                --set ingress.annotations."kubernetes\.io/tls-acme"=true
                --set ingress.tls[0].secretName=${PROJECT}-certificate"
            fi

v1.5.0

24 Nov 16:40
Compare
Choose a tag to compare

1.5.0 (2019-11-24)

Features

  • nodejs_chart: HELM_RENDER_ARGS only define image.tag by default (130fe3e)

v1.4.0

22 Nov 14:17
Compare
Choose a tag to compare

1.4.0 (2019-11-22)

Features

  • nodejs_chart: add HELM_RENDER_ARGS var (1cdbdfc)

v1.3.1

20 Nov 16:44
Compare
Choose a tag to compare

1.3.1 (2019-11-20)

Bug Fixes

  • helm: typo in kubectl extends name (c069be4)
  • nodejs_chart: use HOST as variable (4a81cc5)

v1.3.0

20 Nov 16:36
Compare
Choose a tag to compare

1.3.0 (2019-11-20)

Features

  • nodejs_chart: add deploy nodejs chart stage (9015c78)

v1.2.2

20 Nov 16:10
Compare
Choose a tag to compare

1.2.2 (2019-11-20)

Bug Fixes

  • namespaces: kubectl extends name typo (c260843)