Skip to content
This repository has been archived by the owner on Dec 4, 2023. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
obabec committed Dec 10, 2019
0 parents commit 1f991f2
Show file tree
Hide file tree
Showing 14 changed files with 1,424 additions and 0 deletions.
674 changes: 674 additions & 0 deletions LICENCE.md

Large diffs are not rendered by default.

21 changes: 21 additions & 0 deletions README.md
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
```
20 changes: 20 additions & 0 deletions action.yml
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'
140 changes: 140 additions & 0 deletions node_modules/@actions/core/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions node_modules/@actions/core/lib/command.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

66 changes: 66 additions & 0 deletions node_modules/@actions/core/lib/command.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/@actions/core/lib/command.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

112 changes: 112 additions & 0 deletions node_modules/@actions/core/lib/core.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 1f991f2

Please sign in to comment.