Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/timkrebs9/clipsify
Clipsify is a robust web application designed to seamlessly convert MP4 video files into MP3 audio files.
https://github.com/timkrebs9/clipsify
auth0 docker html kubernetes microservice python
Last synced: 17 days ago
JSON representation
Clipsify is a robust web application designed to seamlessly convert MP4 video files into MP3 audio files.
- Host: GitHub
- URL: https://github.com/timkrebs9/clipsify
- Owner: timkrebs9
- License: mit
- Created: 2024-05-04T20:25:53.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-05-12T13:18:13.000Z (9 months ago)
- Last Synced: 2025-01-14T23:54:01.720Z (17 days ago)
- Topics: auth0, docker, html, kubernetes, microservice, python
- Language: CSS
- Homepage: http://www.clipsify.net
- Size: 212 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Roadmap: ROADMAP.md
Awesome Lists containing this project
README
### Connect to an AKS Cluster With Azure CLI and Kubectl
To connect to an Azure AKS cluster, first, we need to login to Azure using the following command:
```powershell
az login
```
If you have more than one subscription, set it using the following command:```powershell
az account set --subscription subname
```
After login to Azure, install the Kubectl command line tools plug-in for Azure CLI using the following line:```powershell
az aks install-cli
```
Finally, we run the following command to authenticate to our AKS cluster. Make sure you fill in the resource group name of your cluster and your cluster name:```powershell
az aks get-credentials --resource-group RGNAME --name CLUSTERNAME
```You can type kubectl, access the help file, and start managing your AKS cluster.