Commit fa17e4b0 authored by Pierre Smeyers's avatar Pierre Smeyers
Browse files

fix: replace deprecated Docker Hub registry FQDN

parent 20576ad6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -181,7 +181,7 @@ The S3 template uses some global configuration used throughout all jobs.

| Input / Variable | Description                                   | Default value     |
| ---------------------- | --------------------------------------------- | ----------------- |
| `cmd-image` / `S3_CMD_IMAGE` | The Docker image used to run [s3cmd](https://s3tools.org/usage) commands | `registry.hub.docker.com/d3fk/s3cmd:latest` <br/>[![Trivy Badge](https://to-be-continuous.gitlab.io/doc/secu/trivy-badge-S3_CMD_IMAGE.svg)](https://to-be-continuous.gitlab.io/doc/secu/trivy-S3_CMD_IMAGE) |
| `cmd-image` / `S3_CMD_IMAGE` | The Docker image used to run [s3cmd](https://s3tools.org/usage) commands | `docker.io/d3fk/s3cmd:latest` <br/>[![Trivy Badge](https://to-be-continuous.gitlab.io/doc/secu/trivy-badge-S3_CMD_IMAGE.svg)](https://to-be-continuous.gitlab.io/doc/secu/trivy-S3_CMD_IMAGE) |
| `endpoint-host` / `S3_ENDPOINT_HOST` | Default S3 endpoint hostname (with port)      | `s3.amazonaws.com` (AWS) |
| `host-bucket` / `S3_HOST_BUCKET` | Default DNS-style bucket+hostname:port template for accessing a bucket | `%(bucket)s.$S3_ENDPOINT_HOST` |
| `region` / `S3_REGION` | Default region to create the buckets in (if not defined, the template won't create any) | _none_ |
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@
      "name": "S3_CMD_IMAGE",
      "description": "The Docker image used to run [s3cmd](https://s3tools.org/usage) commands",
      "advanced": true,
      "default": "registry.hub.docker.com/d3fk/s3cmd:latest"
      "default": "docker.io/d3fk/s3cmd:latest"
    },
    {
      "name": "S3_ENDPOINT_HOST",
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ spec:
  inputs:
    cmd-image:
      description: The Docker image used to run [s3cmd](https://s3tools.org/usage) commands
      default: registry.hub.docker.com/d3fk/s3cmd:latest
      default: docker.io/d3fk/s3cmd:latest
    endpoint-host:
      description: Default S3 endpoint hostname (with port)
      default: s3.amazonaws.com