From ad9e34bb645c2b97c29a74c95374a5472a26ee4a Mon Sep 17 00:00:00 2001 From: lstocchi Date: Mon, 29 Apr 2024 13:52:25 +0200 Subject: [PATCH 1/2] chore: update README Signed-off-by: lstocchi --- README.md | 37 ++++++++++++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8b30e3e..f68b6d0 100644 --- a/README.md +++ b/README.md @@ -1 +1,36 @@ -# podman-desktop-extension-minikube \ No newline at end of file +# Minikube Extension + +The Minikube extension adds support for https://minikube.sigs.k8s.io/docs/. It allows users to create Kubernetes clusters running on top of the container engine. + +## Topics +- [Installation](#installation) +- [Contributing](#contributing) +- [Feedback](#feedback) + +## Installation + +You can install the Minikube extension directly inside Podman Desktop. + +Go to Extensions > Catalog > Install minikube. + +![](https://github.com/containers/podman-desktop-media/raw/minikube/gifs/install_minikube_extension.gif) + +## Contributing + +Want to help develop and contribute to the Minikube extension? + +You can use `yarn watch --extension-folder` from the Podman Desktop directory to automatically rebuild and test the Minikube extension: + +```sh +git clone https://github.com/containers/podman-desktop +git clone https://github.com/containers/podman-desktop-extension-minikube +cd podman-desktop-extension-minikube +yarn install +yarn build +cd ../podman-desktop +yarn watch --extension-folder ../podman-desktop-extension-minikube +``` + +## Feedback + +You can provide your feedback on the extension by creating [an issue on this repository](https://github.com/containers/podman-desktop-extension-minikube/issues). \ No newline at end of file From 28fb197eabd4ceca2f598ce6804b79bbb59ebe59 Mon Sep 17 00:00:00 2001 From: Luca Stocchi <49404737+lstocchi@users.noreply.github.com> Date: Thu, 2 May 2024 15:31:28 +0200 Subject: [PATCH 2/2] Update README.md Signed-off-by: Luca Stocchi <49404737+lstocchi@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f68b6d0..b032869 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ git clone https://github.com/containers/podman-desktop git clone https://github.com/containers/podman-desktop-extension-minikube cd podman-desktop-extension-minikube yarn install -yarn build +yarn watch cd ../podman-desktop yarn watch --extension-folder ../podman-desktop-extension-minikube ```