bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
49 lines
1.4 KiB
Nix
49 lines
1.4 KiB
Nix
{ lib, buildGoModule, fetchFromGitHub, callPackage }:
|
|
|
|
buildGoModule rec {
|
|
pname = "tfk8s";
|
|
version = "0.1.10";
|
|
tag = "v${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jrhouston";
|
|
repo = "tfk8s";
|
|
rev = tag;
|
|
sha256 = "sha256-VLpXL5ABnCxc+7dV3sZ6wsY2nKn2yfu7eTjtn881/XQ=";
|
|
};
|
|
|
|
vendorHash = "sha256-eTADcUW9b6l47BkWF9YLxdcgvMbCzWTjLF28FneJHg8=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X main.toolVersion=${tag}"
|
|
"-X main.builtBy=nixpkgs"
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
doInstallCheck = true;
|
|
installCheckPhase = ''
|
|
$out/bin/tfk8s --version | grep ${tag} > /dev/null
|
|
'';
|
|
|
|
passthru.tests = {
|
|
sample1 = callPackage ./tests/sample1 { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Utility to convert Kubernetes YAML manifests to Terraform's HCL format";
|
|
license = licenses.mit;
|
|
longDescription = ''
|
|
tfk8s is a tool that makes it easier to work with the Terraform Kubernetes Provider.
|
|
If you want to copy examples from the Kubernetes documentation or migrate existing YAML manifests and use them with Terraform without having to convert YAML to HCL by hand, this tool is for you.
|
|
Features:
|
|
* Convert a YAML file containing multiple manifests.
|
|
* Strip out server side fields when piping kubectl get $R -o yaml | tfk8s --strip
|
|
'';
|
|
homepage = "https://github.com/jrhouston/tfk8s/";
|
|
maintainers = with maintainers; [ bryanasdev000 ];
|
|
mainProgram = "tfk8s";
|
|
};
|
|
}
|