Commit b54fcadd authored by Bertrand Goareguer's avatar Bertrand Goareguer Committed by Cédric OLIVIER
Browse files

fix: "Add registry name in all Docker images"

parent 90601fc7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -70,8 +70,8 @@ Git commits in _to be continuous_ shall be:
1. **atomic** (1 commit `=` 1 and only 1 _thing_),
2. **semantic** (using [semantic-release commit message syntax](https://semantic-release.gitbook.io/semantic-release/#commit-message-format)).

You'll find extensive information about Git commit conventions on the [reference documentation website](https://orange-opensource.gitlab.io/tbc/doc/dev/workflow/#git-commit-guidelines).
You'll find extensive information about Git commit conventions on the [reference documentation website](https://to-be-continuous.gitlab.io/doc/dev/workflow/#git-commit-guidelines).

### Coding Guidelines

The extensive _to be continuous_ coding guidelines can be found on the [reference documentation website](https://orange-opensource.gitlab.io/tbc/doc/dev/guidelines/).
The extensive _to be continuous_ coding guidelines can be found on the [reference documentation website](https://to-be-continuous.gitlab.io/doc/dev/guidelines/).
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ It uses the following variables:

| Name                | description                                                                                               | default value          |
| ------------------- | --------------------------------------------------------------------------------------------------------- | ---------------------- |
| `K6_IMAGE`          | The Docker image used to run k6                                                                           | `loadimpact/k6:latest` |
| `K6_IMAGE`          | The Docker image used to run k6                                                                           | `registry.hub.docker.com/loadimpact/k6:latest` |
| `K6_TESTS_DIR`     | The k6 tests directory                                                                             | `k6`                    |
| `K6_EXTRA_ARGS`     | k6 extra  [command-line](https://k6.io/docs/getting-started/running-k6)                                   | _none_                 |
| `REVIEW_ENABLED` | Set to `true` to enable k6 tests on review environments (dynamic environments instantiated on development branches) | _none_ (disabled)      |
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
    {
      "name": "K6_IMAGE",
      "description": "The Docker image used to run k6 CLI.",
      "default": "loadimpact/k6:latest"
      "default": "registry.hub.docker.com/loadimpact/k6:latest"
    },
    {
      "name": "K6_TESTS_DIR",
+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ variables:
  TBC_TRACKING_IMAGE: "$CI_REGISTRY/to-be-continuous/tools/tracking:master"

  # Default Docker image (can be overriden)
  K6_IMAGE: "loadimpact/k6:latest"
  K6_IMAGE: "registry.hub.docker.com/loadimpact/k6:latest"

  # Directory where K6 tests are implemented
  K6_TESTS_DIR: "k6"