shells/cloud: add comments

This commit is contained in:
Gabriel Arazas 2023-02-05 16:27:03 +08:00
parent e8d52088ff
commit d6def2edc5
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -9,8 +9,10 @@
(buildFHSUserEnv { (buildFHSUserEnv {
name = "cloud-admin-env"; name = "cloud-admin-env";
targetPkgs = pkgs: (with pkgs; [ targetPkgs = pkgs: (with pkgs; [
awscli2 awscli2 # For Amazon Web Services.
azure-cli azure-cli # For Microsoft Azure.
# For Google Cloud Platform.
(google-cloud-sdk.withExtraComponents (google-cloud-sdk.withExtraComponents
(with google-cloud-sdk.components; [ (with google-cloud-sdk.components; [
gke-gcloud-auth-plugin gke-gcloud-auth-plugin
@ -18,10 +20,13 @@
cloud-run-proxy cloud-run-proxy
]) ])
) )
kubectl
hcloud kubectl # For managing Kubernetes cluster if it is on one.
linode-cli hcloud # For Hetzner Cloud.
vultr-cli linode-cli # For Linode.
vultr-cli # For Vultr.
# It's here since Google Cloud SDK needs it.
python3 python3
]); ]);
}).env }).env