github.com/yrj2011/jx-test-infra@v0.0.0-20190529031832-7a2065ee98eb/prow/test/data/test-config.yaml (about)

     1  plank:
     2    default_decoration_config:
     3      timeout: 7200000000000 # 2h
     4      grace_period: 15000000000 # 15s
     5      utility_images:
     6        clonerefs: "clonerefs:default"
     7        initupload: "initupload:default"
     8        entrypoint: "entrypoint:default"
     9        sidecar: "sidecar:default"
    10      gcs_configuration:
    11        bucket: "default-bucket"
    12        path_strategy: "legacy"
    13        default_org: "kubernetes"
    14        default_repo: "kubernetes"
    15      gcs_credentials_secret: "default-service-account"
    16  presubmits:
    17    test-org/test-repo:
    18    - name: kubernetes-no-decoration
    19      agent: kubernetes
    20      always_run: true
    21      context: kubernetes-no-decoration
    22      rerun_command: "/test kubernetes-no-decoration"
    23      trigger: "(?m)^/test( all| kubernetes-no-decoration),?(\\s+|$)"
    24      spec:
    25        containers:
    26        - image: golang:latest
    27          args:
    28          - "test"
    29          - "./..."
    30    - name: kubernetes-defaulted-decoration
    31      agent: kubernetes
    32      always_run: true
    33      context: kubernetes-defaulted-decoration
    34      rerun_command: "/test kubernetes-defaulted-decoration"
    35      trigger: "(?m)^/test( all| kubernetes-defaulted-decoration),?(\\s+|$)"
    36      decorate: true
    37      spec:
    38        containers:
    39        - image: golang:latest
    40          args:
    41          - "test"
    42          - "./..."
    43    - name: kubernetes-explicit-decoration
    44      agent: kubernetes
    45      always_run: true
    46      context: kubernetes-explicit-decoration
    47      rerun_command: "/test kubernetes-explicit-decoration"
    48      trigger: "(?m)^/test( all| kubernetes-explicit-decoration),?(\\s+|$)"
    49      decorate: true
    50      timeout: 1
    51      grace_period: 1
    52      utility_images:
    53        clonerefs: "clonerefs:explicit"
    54        initupload: "initupload:explicit"
    55        entrypoint: "entrypoint:explicit"
    56        sidecar: "sidecar:explicit"
    57      gcs_configuration:
    58        bucket: "explicit-bucket"
    59        path_strategy: "explicit"
    60      gcs_credentials_secret: "explicit-service-account"
    61      spec:
    62        containers:
    63        - image: golang:latest
    64          args:
    65          - "test"
    66          - "./..."