https://github.com/codedx/guided-setup
A framework for installing an application on a Kubernetes cluster using a setup wizard based on a directed graph.
https://github.com/codedx/guided-setup
Last synced: 4 months ago
JSON representation
A framework for installing an application on a Kubernetes cluster using a setup wizard based on a directed graph.
- Host: GitHub
- URL: https://github.com/codedx/guided-setup
- Owner: codedx
- License: apache-2.0
- Created: 2022-07-15T13:48:28.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-26T00:30:50.000Z (over 1 year ago)
- Last Synced: 2024-05-23T00:31:17.239Z (11 months ago)
- Language: PowerShell
- Homepage:
- Size: 290 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - codedx/guided-setup - A framework for installing an application on a Kubernetes cluster using a setup wizard based on a directed graph. (PowerShell)
README
## Overview
This repository contains a framework for installing an application on a Kubernetes cluster using a setup wizard based on a directed graph. It depends on the cross-platform [PowerShell Core](https://docs.microsoft.com/en-us/powershell/scripting/overview) software, which runs on Windows, Linux, and macOS.
## Reference Implementation
For an example of how to use the guided-setup, refer to the reference implementation at [demo](demo).
## Installation
You can obtain the latest guided-setup PowerShell module from the [PowerShell Gallery](https://www.powershellgallery.com/packages?q=guided-setup). You can install the module by running the following commands:
```
$ pwsh
PS /> Install-Module guided-setup
```You can view installed modules with this command:
```
PS /> Get-InstalledModule
```>Note: You can use Get-InstalledModule and the InstalledLocation property to find the location of an installed module. The PSModulePath environment variable must include the root module directory for the guided-setup module to load successfully.
## Uninstallation
You can uninstall the guided-setup module with this command:
```
PS /> Uninstall-Module guided-setup
```