github.com/pachyderm/pachyderm@v1.13.4/examples/run/config/pipeline.json (about)

     1  {
     2      "pipeline": {
     3          "name": "$PIPELINE_NAME"
     4      },
     5      "transform": {
     6          "image": "$PIPELINE_DOCKER_IMAGE",
     7          "cmd": ["/bin/bash"],
     8          "stdin": [
     9              "for file in $PIPELINE_DOCKER_SECRETS_PATH/*; do",
    10                  "export $(basename $file)=$(cat $file);",
    11              "done",
    12              "sh -c $PIPELINE_DOCKER_HOME/$PIPELINE_DOCKER_SCRIPT"
    13          ],
    14          "secrets": [
    15              {
    16                  "name": "$PIPELINE_DOCKER_SECRETS",
    17                  "mount_path": "$PIPELINE_DOCKER_SECRETS_PATH"
    18              }
    19          ],
    20          "image_pull_secrets": ["$PIPELINE_DOCKER_REGISTRY_SECRETS"]
    21      },
    22      "input": {
    23          "pfs": {
    24              "repo": "$PIPELINE_REPO",
    25              "glob": "/*"
    26          }
    27      }
    28  }