Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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.