Commit 44cd4030 authored by Pierre Smeyers's avatar Pierre Smeyers
Browse files

fix: replace deprecated Docker Hub registry FQDN

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

| Input / Variable | Description                                                                          | Default value                                  |
| ------------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------- |
| `image` / `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** | `registry.hub.docker.com/cytopia/ansible:latest-tools` <br/>[![Trivy Badge](https://to-be-continuous.gitlab.io/doc/secu/trivy-badge-ANSIBLE_IMAGE.svg)](https://to-be-continuous.gitlab.io/doc/secu/trivy-ANSIBLE_IMAGE) |
| `image` / `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** | `docker.io/cytopia/ansible:latest-tools` <br/>[![Trivy Badge](https://to-be-continuous.gitlab.io/doc/secu/trivy-badge-ANSIBLE_IMAGE.svg)](https://to-be-continuous.gitlab.io/doc/secu/trivy-ANSIBLE_IMAGE) |
| `project-dir` / `ANSIBLE_PROJECT_DIR` | Ansible project root directory                                                       | `.`                                            |
| `base-app-name` / `ANSIBLE_BASE_APP_NAME` | Base application name                  | `$CI_PROJECT_NAME` ([see GitLab doc](https://docs.gitlab.com/ci/variables/predefined_variables/)) |
| `environment-url` / `ANSIBLE_ENVIRONMENT_URL`       | Default environments url _(only define for static environment URLs declaration)_<br/>_supports late variable expansion (ex: `https://%{environment_name}.acme.com`)_ | _none_ |
@@ -382,7 +382,7 @@ Here are its parameters:

| Input / Variable | Description                               | Default value                 |
| ----------------------- | ----------------------------------------- | ----------------------------- |
| `lint-image` / `ANSIBLE_LINT_IMAGE` | The Docker image used to run Ansible Lint | `registry.hub.docker.com/haxorof/ansible-lint:latest` <br/>[![Trivy Badge](https://to-be-continuous.gitlab.io/doc/secu/trivy-badge-ANSIBLE_LINT_IMAGE.svg)](https://to-be-continuous.gitlab.io/doc/secu/trivy-ANSIBLE_LINT_IMAGE) |
| `lint-image` / `ANSIBLE_LINT_IMAGE` | The Docker image used to run Ansible Lint | `docker.io/haxorof/ansible-lint:latest` <br/>[![Trivy Badge](https://to-be-continuous.gitlab.io/doc/secu/trivy-badge-ANSIBLE_LINT_IMAGE.svg)](https://to-be-continuous.gitlab.io/doc/secu/trivy-ANSIBLE_LINT_IMAGE) |
| `lint-disabled` / `ANSIBLE_LINT_DISABLED` | Set to `true` to disable the `ansible lint` analysis  | _none_ (enabled) |

In addition to a textual report in the console, this job produces the following report, kept for one day:
+2 −2
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@
    {
      "name": "ANSIBLE_IMAGE",
      "description": "The Docker image used to run Ansible. The image may contain your Ansible sources. **set the version required by your project**",
      "default": "registry.hub.docker.com/cytopia/ansible:latest-tools"
      "default": "docker.io/cytopia/ansible:latest-tools"
    },
    {
      "name": "ANSIBLE_PROJECT_DIR",
@@ -98,7 +98,7 @@
        {
          "name": "ANSIBLE_LINT_IMAGE",
          "description": "The Docker image used to run Ansible Lint.",
          "default": "registry.hub.docker.com/haxorof/ansible-lint:latest"
          "default": "docker.io/haxorof/ansible-lint:latest"
        }
      ]
    },
+2 −2
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ spec:
  inputs:
    image:
      description: The Docker image used to run Ansible. The image may contain your Ansible sources. **set the version required by your project**
      default: registry.hub.docker.com/cytopia/ansible:latest-tools
      default: docker.io/cytopia/ansible:latest-tools
    project-dir:
      description: Ansible project root directory
      default: .
@@ -66,7 +66,7 @@ spec:
      default: false
    lint-image:
      description: The Docker image used to run Ansible Lint.
      default: registry.hub.docker.com/haxorof/ansible-lint:latest
      default: docker.io/haxorof/ansible-lint:latest
    review-app-name:
      description: The application name for review env (only define to override default)
      default: ''