gscloud

command module
v0.13.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 16, 2023 License: MIT Imports: 1 Imported by: 0

README

gscloud

gscloud is a command-line tool that lets you manage your virtual infrastructure on gridscale.io.

gscloud is written in Go, so everything you need is just the gscloud binary. Compile it all by yourself or get the official release from the release page.

Create and destroy servers

Examples

See examples to get some first impressions.

Installation

Official releases for Windows, macOS, Linux, FreeBSD

Download packaged binaries from the releases page.

OpenBSD

TODO

Build from source

See here on how to build gscloud from source.

Configuration

You can use gscloud make-config to generate a new config file. Make sure to add your user ID and API token here.

Default locations:

  • Linux: $XDG_CONFIG_HOME/gridscale/config.yaml or $HOME/.config/gridscale/config.yaml
  • Mac: ~/Library/Application Support/gscloud/config.yaml
  • Windows: %APPDATA% or "C:\\Users\\%USER%\\AppData\\Roaming"

Example config:

projects:
- name: default
  userId: 2727b9ab-65ff-4d1e-af5e-d08d682bd1fa
  token: 6eb139b3b6515515a6f358d3a635e9b38f05935782602d4fd5c1b5716af54526
- name: liveaccount
  userId: 2727b9ab-65ff-4d1e-af5e-d08d682bd1fa
  token: 6eb139b3b6515515a6f358d3a635e9b38f05935782602d4fd5c1b5716af54526
  url: https://api.gridscale.io

Following environment variables can also be used instead of config file:

  • GRIDSCALE_UUID - corresponds to userId
  • GRIDSCALE_TOKEN - corresponds to token
  • GRIDSCALE_URL - corresponds to url Note: If the config file and the environment variables are used at the same time, the config file will be ignored and the environment variables will be used.

Kubernetes

You can use gscloud to retrieve the kubeconfig of your managed Kubernetes cluster via gscloud kubernetes cluster save-kubeconfig --credential-plugin --cluster <CLUSTER_UUID>

That way, gscloud will use the gridscale credentials configured in your gscloud configuration to obtain a kubeconfig for your cluster and add that as a new context to your ~/.kube/config.

If you execute the command with --credential-plugin, as given in the example above, gscloud will register itself as the credential plugin for the context and thereby automatically renew the kubeconfig for you, once it has expired. If you do not pass in --credential-plugin, the certificate will expire and can be renewed by running gscloud manually again.

When using gscloud in the context of a pipeline, the use of --credential-plugin is discouraged, as it can lead to colliding kubeconfig renewals, unless gscloud's cache directory is persisted across steps as an artifact.

Exit codes

gscloud returns zero exit code on success, non-zero on failure. Following exit codes map to these failure modes:

  1. The requested command failed.
  2. Reading the configuration file failed.
  3. The configuration could not be parsed.
  4. The project specified does not exist in the configuration file.

Shell completions

Generate shell completion scripts for zsh and bash.

  • bash
$ gscloud completion bash >> ~/.bash_profile
  • zsh
$ gscloud completion zsh >> ~/.zshrc

Install man-pages

Generate man-pages and install them. Example:

$ sudo gscloud manpage /usr/local/share/man/man1/

Contributing

Please create an issue if you have questions, want to start a discussion, or want to start work on something.

Pull requests are always welcome. Make sure to create an issue first to signal others that you are working on something. Also make sure to take a look at the Development Notes.

Have fun!

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
Package render provides helper functions to produce the actual output on the text terminal.
Package render provides helper functions to produce the actual output on the text terminal.
table
Package table provides a convenient way to generate tabular output of any data, primarily useful for CLI tools.
Package table provides a convenient way to generate tabular output of any data, primarily useful for CLI tools.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL