kubectl config delete-cluster wds1-cluster
kubectl config delete-cluster its1-cluster
kubectl config delete-cluster k3d-cluster1
kubectl config delete-cluster k3d-cluster2
kubectl config delete-cluster k3d-kubeflex
kubectl config delete-context wds1
kubectl config delete-context its1
kubectl config delete-context cluster1
π―
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"context" | |
"fmt" | |
"os" | |
"strings" | |
"k8s.io/client-go/kubernetes" | |
"k8s.io/client-go/tools/clientcmd" |
$ docker system df
TYPE TOTAL ACTIVE SIZE RECLAIMABLE
Images 0 0 0B 0B
Containers 0 0 0B 0B
Local Volumes 13 0 31.52GB 31.52GB (100%)
Build Cache 0 0 0B 0B
List All Volumes:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ffmpeg | |
# Basic Usage (Convert Video Format) | |
""" | |
( | |
ffmpeg.input("src/rahulxf.mov") | |
.output("output.mp4") | |
.run() | |
) | |
""" |
π¨ 2020 Update: I recommend using mkcert to generate local certificates. You can do everything below by just running the commands brew install mkcert
and mkcert -install
. Keep it simple!
This gives you that beautiful green lock in Chrome. I'm assuming you're putting your SSL documents in /etc/ssl
, but you can put them anywhere and replace the references in the following commands. Tested successfully on Mac OS Sierra and High Sierra.
sudo nano /etc/ssl/localhost/localhost.conf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://github.com/helm/helm/issues/7310 | |
// https://github.com/helm/helm/issues/12931 | |
// helm 3.0.2 SDK - example of install from remote repository #7310 | |
// https://github.com/helm/helm/issues/12907 | |
// https://github.com/helm/helm-www/pull/1543 | |
import ( | |
"log" | |
"os" |
NewerOlder