Commit 05839d4f authored by Pierre Smeyers's avatar Pierre Smeyers
Browse files

doc: warn default Docker image has to be changed

parent 6ecd88a5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@ This template can be configured with the following **environment variables**:

| Name                            | Description                                                                          | Default value                                  |
| ------------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------- |
| `ANSIBLE_IMAGE`                 | The Docker image used to run Ansible. The image may contain your Ansible sources.    | `cytopia/ansible:latest-tools` |
| `ANSIBLE_IMAGE`                 | The Docker image used to run Ansible. The image may contain your Ansible sources. <br/>:warning: **set the version required by your project** | `cytopia/ansible:latest-tools` |
| `ANSIBLE_PROJECT_DIR`           | Ansible project root directory                                                       | `.`                                            |
| :lock: `ANSIBLE_VAULT_PASSWORD` | The Ansible vault password used to decrypt vars.                                     | **has to be defined in gitlab secret if used** |
| :lock: `ANSIBLE_PRIVATE_KEY`    | The Ansible SSH private key to use in all stages (can be overridden per env)         | **has to be defined in gitlab secret if used** |
@@ -487,6 +487,6 @@ variables:
    # $VAULT_ROLE_ID and $VAULT_SECRET_ID defined as a secret CI/CD variable
```

## Gitlab compatibility
## GitLab compatibility

:information_source: This template is actually tested and validated on GitLab Community Edition instance version 13.12.11
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
  "variables": [
    {
      "name": "ANSIBLE_IMAGE",
      "description": "The Docker image used to run Ansible. The image may contain your Ansible sources. **It is highly recommended to set the CLI version compatible with your project**",
      "description": "The Docker image used to run Ansible. The image may contain your Ansible sources. **set the version required by your project**",
      "default": "cytopia/ansible:latest-tools"
    },
    {