generated from kyma-project/template-repository
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move create single cluster to seperate action (#957)
Co-authored-by: Marcin Dobrochowski <[email protected]>
- Loading branch information
1 parent
07bb1d4
commit c15c329
Showing
3 changed files
with
21 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: 'Create single cluster' | ||
description: 'Action for creating single cluster' | ||
|
||
runs: | ||
using: 'composite' | ||
steps: | ||
- name: create single cluster | ||
uses: AbsaOSS/k3d-action@4e8b3239042be1dc0aed6c5eb80c13b18200fc79 #v2.4.0 | ||
with: | ||
cluster-name: "k3dCluster" | ||
args: >- | ||
--agents 1 | ||
--image rancher/k3s:v1.29.3-k3s1 | ||
--port 80:80@loadbalancer | ||
--port 443:443@loadbalancer | ||
--wait |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters