-
-
Save melezhik/aceb257be409d2b9674d9c0a15f9a4fd to your computer and use it in GitHub Desktop.
sparky minikube example
This file contains 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
#!raku | |
use Data::Dump; | |
my $d = task-run "dpl check", "k8s-deployment-check", %( | |
name => "hello-minikube", | |
namespace => "default" | |
); | |
#say Dump($d,:color); | |
say $d<image>; | |
my $pods = task-run "pod check", "k8s-pod-check", %( | |
name => "hello", | |
namespace => "default", | |
); |
Author
melezhik
commented
Jun 2, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment