Skip to content

Commit

Permalink
chore: Add skr args input to setup test clusters action (#1475)
Browse files Browse the repository at this point in the history
* chore: Add skr args input to setup test clusters action

* junk: move out arg for testing

* Revert "junk: move out arg for testing"

This reverts commit 585655d.
  • Loading branch information
c-pius authored Apr 16, 2024
1 parent f92ad84 commit 132df28
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/actions/setup-test-clusters/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ inputs:
cert_manager_version:
description: The version of cert-manager to depoy. For example, 1.13.3.
required: true
additional_skr_args:
description: Additional arguments to pass to the k3d create command for the SKR cluster separated by semicolon (;).
required: false
runs:
using: composite
steps:
Expand All @@ -15,7 +18,7 @@ runs:
with:
cluster_name: skr
k8s_version: ${{ inputs.k8s_version }}
args: "-p 10080:80@loadbalancer;-p 10443:443@loadbalancer"
args: "-p 10080:80@loadbalancer;-p 10443:443@loadbalancer;${{ inputs.additional_skr_args }}"
- uses: ./lifecycle-manager/.github/actions/create-k3d-cluster
with:
cluster_name: kcp
Expand Down

0 comments on commit 132df28

Please sign in to comment.