https://github.com/rustytake-off/quick-aks
Deploy simple and quick AKS for demos.
https://github.com/rustytake-off/quick-aks
aks azure k8s kubernetes
Last synced: about 1 month ago
JSON representation
Deploy simple and quick AKS for demos.
- Host: GitHub
- URL: https://github.com/rustytake-off/quick-aks
- Owner: RustyTake-Off
- License: mit
- Created: 2023-05-07T18:06:00.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-09T00:20:03.000Z (almost 2 years ago)
- Last Synced: 2024-12-06T14:11:18.921Z (5 months ago)
- Topics: aks, azure, k8s, kubernetes
- Language: Shell
- Homepage:
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# quick-aks
These are a set of scripts that simplify the process of creating an AKS cluster on Azure. With these scripts, you can deploy a functional AKS demo environment in a short amount of time. By following the steps outlined below, you can quickly deploy and manage an AKS cluster without having to go through the complex manual steps.
## Prerequisites
You will need the following prerequisites:
* [Azure account](https://azure.microsoft.com/en-us/free/search/)
* [Git](https://git-scm.com/)## Deployment Steps
You can utilize these scripts by:
1. Cloning the repository
```sh
git clone https://github.com/RustyTake-Off/quick-aks
```2. Change the directory to the cloned repository and one of the two directories inside it. There are two versions of the deployment script available - one for Unix-based systems (`quick-aks-sh`) and one for Windows (`quick-aks-ps1`).
```sh
cd quick-aks
``````sh
cd quick-aks-sh
```or
```ps1
cd quick-aks-ps1
```3. And then run the preferred deployment script.
```sh
./deploy-quick-aks.sh
```or
```ps1
./deploy-quick-aks.ps1
```4. You can destroy the deployed AKS cluster with the destroy script.
```sh
./destroy-quick-aks.sh
``````ps1
./destroy-quick-aks.ps1
```It is recommended that you review the contents of the scripts and the environment variables they use before running them. This will allow you to make any necessary adjustments to suit your specific requirements.