Commit d7448577 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/ansible/compare/1.2.1...2.0.0) (2021-09-02)

### Features

* Change boolean variable behaviour ([f24358b2](https://gitlab.com/to-be-continuous/ansible/commit/f24358b211a2d46a04ef76909f255e027c3afcdc)

)

### BREAKING CHANGES

* boolean variable now triggered on explicit 'true' value

Signed-off-by: default avatarCédric OLIVIER <cedric3.olivier@orange.com>
parent d8e0c285
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ In order to include this template in your project, add the following to your `gi
```yaml
include:
  - project: 'to-be-continuous/ansible'
    ref: '1.2.1'
    ref: '2.0.0'
    file: '/templates/gitlab-ci-ansible.yml'
    
variables:
@@ -243,7 +243,7 @@ The `gitlab-ci` in this example, will show use how to configure the template to
```yaml
include:
  - project: 'to-be-continuous/ansible'
    ref: '1.2.1'
    ref: '2.0.0'
    file: '/templates/gitlab-ci-ansible.yml'
    
variables:
@@ -321,10 +321,10 @@ In the `.gitlab-ci.yml` add the docker template to build your image:
```yaml
include:
  - project: 'to-be-continuous/ansible'
    ref: '1.2.1'
    ref: '2.0.0'
    file: '/templates/gitlab-ci-ansible.yml'
  - project: 'to-be-continuous/docker'
    ref: '1.2.1'
    ref: '2.0.0'
    file: '/templates/gitlab-ci-docker.yml'
    
variables:
@@ -365,7 +365,7 @@ Add this `.gitlab-ci.yml` in the repository of your application project (you wil
```yaml
include:
  - project: 'to-be-continuous/ansible'
    ref: '1.2.1'
    ref: '2.0.0'
    file: '/templates/gitlab-ci-ansible.yml'
    
variables:
@@ -440,11 +440,11 @@ With:
include:
  # main template
  - project: 'to-be-continuous/ansible'
    ref: '1.2.1'
    ref: '2.0.0'
    file: '/templates/gitlab-ci-ansible.yml'
  # Vault variant
  - project: 'to-be-continuous/ansible'
    ref: '1.2.1'
    ref: '2.0.0'
    file: '/templates/gitlab-ci-ansible-vault.yml'

variables:
+1 −1
Original line number Diff line number Diff line
@@ -9,6 +9,6 @@ variables:
.ansible-base:
  services:
    - name: "$CI_REGISTRY/to-be-continuous/tools/tracking:master"
      command: ["--service", "ansible", "1.2.1" ]
      command: ["--service", "ansible", "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
@@ -410,7 +410,7 @@ stages:
    fi
  }

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

@@ -419,7 +419,7 @@ stages:
.ansible-base:
  services:
    - name: "$CI_REGISTRY/to-be-continuous/tools/tracking:master"
      command: ["--service", "ansible", "1.2.1" ]
      command: ["--service", "ansible", "2.0.0" ]
  before_script:
    - *ansible-scripts
    - install_ca_certs "${CUSTOM_CA_CERTS:-$DEFAULT_CA_CERTS}"