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 software, which runs on Windows, Linux, and macOS.
For an example of how to use the guided-setup, refer to the reference implementation at demo.
You can obtain the latest guided-setup PowerShell module from the PowerShell Gallery. 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.
You can uninstall the guided-setup module with this command:
PS /> Uninstall-Module guided-setup