Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions tkn/infra-aws-fedora.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,8 @@ spec:
The parameter is intended to add verbosity on the task execution and also print credentials on stdout
to easily access to remote machice
default: 'false'
- name: timeout
default: "8h"

results:
- name: host-access-secret
Expand Down Expand Up @@ -198,6 +200,10 @@ spec:
cmd+="--airgap "
fi
cmd+="--tags $(params.tags) "

if [[ $(params.timeout) != "" ]]; then
cmd+="--timeout $(params.timeout) "
fi
fi
eval "${cmd}"
resources:
Expand Down
5 changes: 5 additions & 0 deletions tkn/infra-aws-mac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,8 @@ spec:
The parameter is intended to add verbosity on the task execution and also print credentials on stdout
to easily access to remote machice
default: 'false'
- name: timeout
default: "8h"

results:
- name: host-access-secret
Expand Down Expand Up @@ -197,6 +199,9 @@ spec:
cmd+="--airgap "
fi
cmd+="--tags $(params.tags) "
if [[ $(params.timeout) != "" ]]; then
cmd+="--timeout $(params.timeout) "
fi
fi
eval "${cmd}"
resources:
Expand Down
5 changes: 5 additions & 0 deletions tkn/infra-aws-rhel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,8 @@ spec:
The parameter is intended to add verbosity on the task execution and also print credentials on stdout
to easily access to remote machice
default: 'false'
- name: timeout
default: "8h"

results:
- name: host-access-secret
Expand Down Expand Up @@ -234,6 +236,9 @@ spec:
fi
if [[ $(params.airgap) == "true" ]]; then cmd+="--airgap "; fi
if [[ $(params.profile-snc) == "true" ]]; then cmd+="--snc "; fi
if [[ $(params.timeout) != "" ]]; then
cmd+="--timeout $(params.timeout) "
fi
cmd+="--tags $(params.tags) "
fi
eval "${cmd}"
Expand Down
5 changes: 5 additions & 0 deletions tkn/infra-aws-windows-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,8 @@ spec:
The parameter is intended to add verbosity on the task execution and also print credentials on stdout
to easily access to remote machice
default: 'false'
- name: timeout
default: "8h"

results:
- name: host-access-secret
Expand Down Expand Up @@ -188,6 +190,9 @@ spec:
fi
if [[ $(params.airgap) == "true" ]]; then cmd+="--airgap "; fi
cmd+="--tags $(params.tags) "
if [[ $(params.timeout) != "" ]]; then
cmd+="--timeout $(params.timeout) "
fi
fi
eval "${cmd}"
resources:
Expand Down
5 changes: 5 additions & 0 deletions tkn/infra-azure-aks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,8 @@ spec:
The parameter is intended to add verbosity on the task execution and also print credentials on stdout
to easily access to remote machice
default: 'false'
- name: timeout
default: "8h"

results:
- name: cluster-access-secret
Expand Down Expand Up @@ -177,6 +179,9 @@ spec:
cmd+="--spot --spot-eviction-tolerance $(params.spot-eviction-tolerance) "
fi
cmd+="--tags $(params.tags) "
if [[ $(params.timeout) != "" ]]; then
cmd+="--timeout $(params.timeout) "
fi
fi
eval "${cmd}"
resources:
Expand Down
5 changes: 5 additions & 0 deletions tkn/infra-azure-fedora.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,8 @@ spec:
The parameter is intended to add verbosity on the task execution and also print credentials on stdout
to easily access to remote machice
default: 'false'
- name: timeout
default: "8h"

results:
- name: host-access-secret
Expand Down Expand Up @@ -189,6 +191,9 @@ spec:
# Spot tolerance only be applied if spot is enabled
cmd+="--spot-eviction-tolerance $(params.spot-eviction-tolerance) "
cmd+="--tags $(params.tags) "
if [[ $(params.timeout) != "" ]]; then
cmd+="--timeout $(params.timeout) "
fi
fi
eval "${cmd}"
resources:
Expand Down
5 changes: 5 additions & 0 deletions tkn/infra-azure-rhel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,8 @@ spec:
The parameter is intended to add verbosity on the task execution and also print credentials on stdout
to easily access to remote machice
default: 'false'
- name: timeout
default: "8h"

results:
- name: host-access-secret
Expand Down Expand Up @@ -193,6 +195,9 @@ spec:
# Spot tolerance only be applied if spot is enabled
cmd+="--spot-eviction-tolerance $(params.spot-eviction-tolerance) "
cmd+="--tags $(params.tags) "
if [[ $(params.timeout) != "" ]]; then
cmd+="--timeout $(params.timeout) "
fi
fi
eval "${cmd}"
resources:
Expand Down
5 changes: 5 additions & 0 deletions tkn/infra-azure-windows-desktop.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,8 @@ spec:
The parameter is intended to add verbosity on the task execution and also print credentials on stdout
to easily access to remote machice
default: 'false'
- name: timeout
default: "8h"

results:
- name: host-access-secret
Expand Down Expand Up @@ -190,6 +192,9 @@ spec:
# Spot tolerance only be applied if spot is enabled
cmd+="--spot-eviction-tolerance $(params.spot-eviction-tolerance) "
cmd+="--tags $(params.tags) "
if [[ $(params.timeout) != "" ]]; then
cmd+="--timeout $(params.timeout) "
fi
fi
eval "${cmd}"
resources:
Expand Down