Skip to content
Merged
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 @@ -48,6 +48,9 @@ spec:

To access the target machine we need to go through the bastion
default: 'false'
- name: tags
description: tags for the resources created on the providers
default: "''"

# Control params
- name: remove-lock
Expand Down Expand Up @@ -119,6 +122,9 @@ spec:
if [[ $(params.airgap) == "true" ]]; then
cmd="$cmd --airgap "
fi
if [[ $(params.tags) != "" ]]; then
cmd="$cmd --tags $(params.tags) "
fi
fi
eval "${cmd}"

Expand Down
6 changes: 6 additions & 0 deletions tkn/infra-aws-mac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ spec:

To access the target machine we need to go through the bastion.
default: 'false'
- name: tags
description: tags for the resources created on the providers
default: "''"

# Control params
- name: remove-lock
Expand Down Expand Up @@ -153,6 +156,9 @@ spec:
if [[ $(params.airgap) == "true" ]]; then
cmd="$cmd --airgap "
fi
if [[ $(params.tags) != "" ]]; then
cmd="$cmd --tags $(params.tags) "
fi

fi
eval "${cmd}"
Expand Down
6 changes: 6 additions & 0 deletions tkn/infra-aws-rhel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ spec:

To access the target machine we need to go through the bastion
default: 'false'
- name: tags
description: tags for the resources created on the providers
default: "''"

# Control params
- name: remove-lock
Expand Down Expand Up @@ -138,6 +141,9 @@ spec:
if [[ $(params.profile-snc) == "true" ]]; then
cmd="$cmd --snc "
fi
if [[ $(params.tags) != "" ]]; then
cmd="$cmd --tags $(params.tags) "
fi
fi
eval "${cmd}"

Expand Down
6 changes: 6 additions & 0 deletions tkn/infra-aws-windows-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ spec:

To access the target machine we need to go through the bastion
default: 'false'
- name: tags
description: tags for the resources created on the providers
default: "''"

# Control params
- name: remove-lock
Expand Down Expand Up @@ -131,6 +134,9 @@ spec:
if [[ $(params.airgap) == "true" ]]; then
cmd="$cmd --airgap "
fi
if [[ $(params.tags) != "" ]]; then
cmd="$cmd --tags $(params.tags) "
fi
fi
eval "${cmd}"

Expand Down
6 changes: 6 additions & 0 deletions tkn/infra-azure-rhel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ spec:
- name: remove-lock
description: in case a previous run fails the stack can be locked. This value allows to control if remove lock
default: 'true'
- name: tags
description: tags for the resources created on the providers
default: "''"

results:
- name: host
Expand Down Expand Up @@ -106,6 +109,9 @@ spec:
cmd="$cmd --spot "
cmd="$cmd --spot-eviction-tolerance $(params.spot-eviction-tolerance) "
fi
if [[ $(params.tags) != "" ]]; then
cmd="$cmd --tags $(params.tags) "
fi
fi
eval "${cmd}"

Expand Down
6 changes: 6 additions & 0 deletions tkn/infra-azure-windows-desktop.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ spec:
- name: remove-lock
description: in case a previous run fails the stack can be locked. This value allows to control if remove lock
default: 'true'
- name: tags
description: tags for the resources created on the providers
default: "''"

results:
- name: host
Expand Down Expand Up @@ -108,6 +111,9 @@ spec:
cmd="$cmd --spot "
cmd="$cmd --spot-eviction-tolerance $(params.spot-eviction-tolerance) "
fi
if [[ $(params.tags) != "" ]]; then
cmd="$cmd --tags $(params.tags) "
fi
fi
eval "${cmd}"

Expand Down