Switch to generating certs with openssl.
This commit is contained in:
30
nix/kubernetes/keys/package/deploy-script/package.nix
Normal file
30
nix/kubernetes/keys/package/deploy-script/package.nix
Normal file
@@ -0,0 +1,30 @@
|
||||
# unpackPhase
|
||||
# patchPhase
|
||||
# configurePhase
|
||||
# buildPhase
|
||||
# checkPhase
|
||||
# installPhase
|
||||
# fixupPhase
|
||||
# installCheckPhase
|
||||
# distPhase
|
||||
{
|
||||
stdenv,
|
||||
writeShellScript,
|
||||
k8s,
|
||||
...
|
||||
}:
|
||||
let
|
||||
deploy_script_body = "";
|
||||
deploy_script = (writeShellScript "deploy-script" deploy_script_body);
|
||||
in
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
name = "deploy-script";
|
||||
nativeBuildInputs = [ ];
|
||||
buildInputs = [ ];
|
||||
|
||||
unpackPhase = "true";
|
||||
|
||||
installPhase = ''
|
||||
cp ${deploy_script} "$out"
|
||||
'';
|
||||
})
|
||||
Reference in New Issue
Block a user