Commit cb29884a authored by semantic-release-bot's avatar semantic-release-bot
Browse files

chore(release): 2.0.0 [skip ci]

# [2.0.0](https://gitlab.com/to-be-continuous/helm/compare/1.4.2...2.0.0) (2021-09-03)

### Features

* Change boolean variable behaviour ([7c72363c](https://gitlab.com/to-be-continuous/helm/commit/7c72363c466beb98624d64c220bfa7c1445d4586)

)

### BREAKING CHANGES

* boolean variable now triggered on explicit 'true' value

Signed-off-by: default avatarCédric OLIVIER <cedric3.olivier@orange.com>
parent 013a2c47
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -50,7 +50,7 @@ In order to include this template in your project, add the following to your `gi
```yaml
include:
  - project: 'to-be-continuous/helm'
    ref: '1.4.2'
    ref: '2.0.0'
    file: '/templates/gitlab-ci-helm.yml'
```

@@ -327,11 +327,11 @@ With:
include:
  # main template
  - project: 'to-be-continuous/helm'
    ref: '1.4.2'
    ref: '2.0.0'
    file: '/templates/gitlab-ci-helm.yml'
  # Vault variant
  - project: 'to-be-continuous/helm'
    ref: '1.4.2'
    ref: '2.0.0'
    file: '/templates/gitlab-ci-helm-vault.yml'

variables:
+1 −1
Original line number Diff line number Diff line
@@ -9,6 +9,6 @@ variables:
.helm-base:
  services:
    - name: "$CI_REGISTRY/to-be-continuous/tools/tracking:master"
      command: ["--service", "helm", "1.4.2" ]
      command: ["--service", "helm", "2.0.0" ]
    - name: "$CI_REGISTRY/to-be-continuous/tools/vault-secrets-provider:master"
      alias: "vault-secrets-provider"
+2 −2
Original line number Diff line number Diff line
@@ -456,7 +456,7 @@ stages:
    fi
  }

  if [[ "$TEMPLATE_CHECK_UPDATE_DISABLED" != "true" ]]; then check_for_update helm "1.4.2"; fi
  if [[ "$TEMPLATE_CHECK_UPDATE_DISABLED" != "true" ]]; then check_for_update helm "2.0.0"; fi
  unscope_variables
  eval_all_secrets

@@ -470,7 +470,7 @@ stages:
    entrypoint: [""]
  services:
    - name: "$CI_REGISTRY/to-be-continuous/tools/tracking:master"
      command: ["--service", "helm", "1.4.2" ]
      command: ["--service", "helm", "2.0.0" ]
  before_script:
    - *helm-scripts
    - install_ca_certs "${CUSTOM_CA_CERTS:-$DEFAULT_CA_CERTS}"