github.com/munnerz/test-infra@v0.0.0-20190108210205-ce3d181dc989/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      always_run: true
    20      spec:
    21        containers:
    22        - image: golang:latest
    23          args:
    24          - "test"
    25          - "./..."
    26    - name: kubernetes-defaulted-decoration
    27      always_run: true
    28      decorate: true
    29      spec:
    30        containers:
    31        - image: golang:latest
    32          args:
    33          - "test"
    34          - "./..."
    35    - name: kubernetes-explicit-decoration
    36      always_run: true
    37      decorate: true
    38      decoration_config:
    39        timeout: 1
    40        grace_period: 1
    41        utility_images:
    42          clonerefs: "clonerefs:explicit"
    43          initupload: "initupload:explicit"
    44          entrypoint: "entrypoint:explicit"
    45          sidecar: "sidecar:explicit"
    46        gcs_configuration:
    47          bucket: "explicit-bucket"
    48          path_strategy: "explicit"
    49        gcs_credentials_secret: "explicit-service-account"
    50      spec:
    51        containers:
    52        - image: golang:latest
    53          args:
    54          - "test"
    55          - "./..."