This repository has been archived by the owner on Dec 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 1f991f2
Showing
14 changed files
with
1,424 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,21 @@ | ||
# Minikube setup action | ||
|
||
Action installs minikube to hosted VM environment. | ||
|
||
## Inputs | ||
|
||
### `minikube-version` | ||
|
||
**Required** Minikube version. Default `"1.4.0"`. | ||
|
||
### `k8s-version` | ||
|
||
**Required** Version of Kubernetes you wish to use with Minikube. Default `"1.14.6"`. | ||
|
||
## Example usage | ||
``` | ||
- name: Minikube setup with registry | ||
uses: EnMasseProject/[email protected] | ||
with: | ||
k8s-version: 1.15.0 | ||
``` |
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,20 @@ | ||
name: 'Minikube setup with registry' | ||
description: 'Installs minikube in your Github Actions workflow.' | ||
branding: | ||
icon: 'download-cloud' | ||
color: 'blue' | ||
inputs: | ||
minikube-version: | ||
description: 'Minikube version to install' | ||
required: false | ||
default: '1.4.0' | ||
k8s-version: | ||
description: 'Kubernetes version to install' | ||
required: false | ||
default: '1.15.0' | ||
outputs: | ||
launcher: | ||
description: 'Command to execute to launch minikube' | ||
runs: | ||
using: 'node12' | ||
main: 'src/index.js' |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.