Skip to content

Instantly share code, notes, and snippets.

@melezhik
Created June 2, 2024 07:58
Show Gist options
  • Save melezhik/aceb257be409d2b9674d9c0a15f9a4fd to your computer and use it in GitHub Desktop.
Save melezhik/aceb257be409d2b9674d9c0a15f9a4fd to your computer and use it in GitHub Desktop.
sparky minikube example
#!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",
);
@melezhik
Copy link
Author

melezhik commented Jun 2, 2024

Sparky Log

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment