This commit is contained in:
Sergei Poljanski 2025-12-27 16:27:03 +02:00
commit 0e0297b89e
Signed by: asxpi
GPG key ID: 4F8851660FA4121B
8 changed files with 258 additions and 0 deletions

30
flake.nix Normal file
View file

@ -0,0 +1,30 @@
{
description = "GitOps Playground with ArgoCD and Kind";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.${system}.default = pkgs.mkShell {
buildInputs = with pkgs; [
kind
kubectl
argocd
k9s
jq
];
shellHook = ''
echo "🚀 GitOps Playground Environment Loaded"
echo "Tools available: kind, kubectl, argocd, k9s"
echo "Run 'make setup' to initialize the cluster."
'';
};
};
}