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

chore(release): 4.0.0 [skip ci]

# [4.0.0](https://gitlab.com/to-be-continuous/ansible/compare/3.5.2...4.0.0) (2023-04-05)

### Features

* **deploy:** redesign deployment strategy ([5ee6042e](https://gitlab.com/to-be-continuous/ansible/commit/5ee6042e3d1b65586397f1c27ca9764dfadf2374))

### BREAKING CHANGES

* **deploy:** $AUTODEPLOY_TO_PROD no longer supported (replaced by $ANSIBLE_PROD_DEPLOY_STRATEGY - see doc)
parent c92c10fe
Loading
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
# [4.0.0](https://gitlab.com/to-be-continuous/ansible/compare/3.5.2...4.0.0) (2023-04-05)


### Features

* **deploy:** redesign deployment strategy ([5ee6042](https://gitlab.com/to-be-continuous/ansible/commit/5ee6042e3d1b65586397f1c27ca9764dfadf2374))


### BREAKING CHANGES

* **deploy:** $AUTODEPLOY_TO_PROD no longer supported (replaced by $ANSIBLE_PROD_DEPLOY_STRATEGY - see doc)

## [3.5.2](https://gitlab.com/to-be-continuous/ansible/compare/3.5.1...3.5.2) (2023-03-07)


+7 −7
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ In order to include this template in your project, add the following to your `gi
```yaml
include:
  - project: 'to-be-continuous/ansible'
    ref: '3.5.2'
    ref: '4.0.0'
    file: '/templates/gitlab-ci-ansible.yml'
    
variables:
@@ -367,7 +367,7 @@ The `gitlab-ci` in this example, will show use how to configure the template to
```yaml
include:
  - project: 'to-be-continuous/ansible'
    ref: '3.5.2'
    ref: '4.0.0'
    file: '/templates/gitlab-ci-ansible.yml'
    
variables:
@@ -445,10 +445,10 @@ In the `.gitlab-ci.yml` add the docker template to build your image:
```yaml
include:
  - project: 'to-be-continuous/ansible'
    ref: '3.5.2'
    ref: '4.0.0'
    file: '/templates/gitlab-ci-ansible.yml'
  - project: 'to-be-continuous/docker'
    ref: '3.5.2'
    ref: '4.0.0'
    file: '/templates/gitlab-ci-docker.yml'
    
variables:
@@ -489,7 +489,7 @@ Add this `.gitlab-ci.yml` in the repository of your application project (you wil
```yaml
include:
  - project: 'to-be-continuous/ansible'
    ref: '3.5.2'
    ref: '4.0.0'
    file: '/templates/gitlab-ci-ansible.yml'
    
variables:
@@ -565,11 +565,11 @@ With:
include:
  # main template
  - project: 'to-be-continuous/ansible'
    ref: '3.5.2'
    ref: '4.0.0'
    file: '/templates/gitlab-ci-ansible.yml'
  # Vault variant
  - project: 'to-be-continuous/ansible'
    ref: '3.5.2'
    ref: '4.0.0'
    file: '/templates/gitlab-ci-ansible-vault.yml'

variables:
+1 −1
Original line number Diff line number Diff line
@@ -11,6 +11,6 @@ variables:
.ansible-base:
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: ["--service", "ansible", "3.5.2" ]
      command: ["--service", "ansible", "4.0.0" ]
    - name: "$TBC_VAULT_IMAGE"
      alias: "vault-secrets-provider"
+1 −1
Original line number Diff line number Diff line
@@ -478,7 +478,7 @@ stages:
.ansible-base:
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: ["--service", "ansible", "3.5.2" ]
      command: ["--service", "ansible", "4.0.0" ]
  before_script:
    - *ansible-scripts
    - install_ca_certs "${CUSTOM_CA_CERTS:-$DEFAULT_CA_CERTS}"