Latest version: 1.10 (2024-04-02)

The Develocity Admin CLI tool is a command line program that can perform tasks related to your Develocity instance. Some of these tasks require it to connect to your instance.

Running the Develocity Admin CLI tool

This tool in distributed in two ways:

  • As an executable Java JAR file

  • As a Docker image

The recommended configuration for standalone installations is to install the JAR option on the Develocity host and run it there.

Running the Admin CLI JAR file

Prerequisites

To run the Admin CLI JAR, you will need:

  • A Java 21+ runtime available locally on the machine that you wish to execute the JAR on. For standalone installs this should be the Develocity host.

  • To download the JAR.

Executing the JAR

Run the JAR using the java command:

java -jar develocityctl-<VERSION>.jar [arguments]

Run without any arguments to see a list of available commands.

Running the Admin CLI Docker image

Prerequisites

To run the Admin CLI docker image in a container, you will need:

  • A Docker runtime and CLI tools available

  • A machine with access to pull the gradle/develocityctl image from DockerHub, or to have pulled it into a registry that can be accessed.

Executing the Docker image

Run the docker run command:

  docker run --rm -it \
    -v "${HOME}/.kube/config:/kube-config:ro" \(1)
    gradle/develocityctl \(2)
    --kube-ns=develocity \(3)
    [arguments]
1 This makes your local Kubernetes client configuration available to the Docker container. Adjust if config is stored in different location.
2 A specific version of the tool can be selected by appending a tag. E.g. gradle/develocityctl:1.9.
3 The Kubernetes namespace Develocity is deployed in. Adjust if using different namespace.
Some Kubernetes clusters may contain a cloud-specific exec action or use an auth-provider configuration to fetch the authentication token within the kubeconfig file. Since the binaries for the specific cloud service are not available to the docker container, the Admin CLI is unable to fetch the token and connect to the cluster. In such cases, please use the --kube-token option, as documented in Specifying the Kubernetes cluster by URL and token.

Run without any arguments to see a list of available commands.

Working with files when using the Docker image

A docker container by default cannot access your local filesystem. Instead, it is possible to mount a local directory to a path inside the container as a volume.

Some commands need to read or write files from the local filesystem. It is necessary to mount files or directories into the container in these cases.

The tool executes in the /home directory inside the container. Thus, mounting a directory to /home makes files in that directory available to the tool, and it will write files inside that directory by default.

Mounting a directory is achieved by adding a -v host-path:container-path option to the docker command.

Example, downloading a support bundle:

  docker run --rm -it \
    -v "${HOME}/.kube/config:/kube-config:ro" \
    -v "${HOME}/bundles:/home" \
    gradle/develocityctl \
    --kube-ns=develocity \
    support-bundle

This will create a file in the bundles directory.

Many commands have options to accept input from standard input or to produce their output to standard output. Please see the help text for a command by running it with --help to see if this is available for a given command.

Connecting the Admin CLI to your Develocity instance

To connect to the Kubernetes cluster into which Develocity has been installed, the tool needs to discover or be provided with connection details.

Using the default context from the environment

Kubernetes client configuration is usually stored in the ${HOME}/.kube/config file. If a default context is configured there, the tool will detect this and attempt to connect to that cluster.

To check which contexts are available, and which is the default, run this command:

kubectl config get-contexts

It is possible to set the default context:

kubectl config use-context my-example-context-name

Specifying the context by name

If there is no default set, or if you would like to select the context to use without altering the local environment, it can be speficied as an option:

--kube-ctx=my-example-context-name

Specifying the Kubernetes cluster by URL and token

If running on a machine without a local Kubernetes client configuration set up, it is possible to instead connect to a cluster by providing its URL and an authentication token:

--kube-url=https://kube-cluster.example.com:1234 --kube-token=ABCD1234

Specifying the namespace

If using a locally configured context, a default namespace may be configured. If so, the tool will look for a Develocity instance in that namespace.

To check if your current context has a default namesace set, run this command:

kubectl config view -o jsonpath='{..namespace}'

The namespace can be set as the default for the current context by running this command:

kubectl config set-context --current --namespace=my-example-namespace

If there is no current context, or if there is but there is no default namespace, or if Develocity is on a different namespace to the default, you can specify the namespace to use as an argument to the tool:

--kube-ns=my-example-namespace

Shell aliases

It is possible to set up a shell alias to run the admin tool with the arguments required to connect to the Develocity instance. This then makes running the tool more convenient.

Examples:

# Admin CLI run as a JAR file:
alias develocityctl="java -jar /absolute/path/to/develocityctl.jar --kube-url=https://my-k8s-cluster.example.com --kube-token=ABCD1234 --kube-ns=develocity"

# Admin CLI run as a Docker container with statically mounted directory for files produced by commands:
alias develocityctl="docker run --rm -it -v ${HOME}/.kube/config:/kube-config:ro -v ${HOME}/admin-cli:/home gradle/develocityctl --kube-ctx=my-k8s-cluster --kube-ns=develocity"

# Admin CLI run as a Docker container with output directory mapping done on a command run time:
alias develocityctl="docker run --rm -it -v ${HOME}/.kube/config:/kube-config:ro  gradle/develocityctl --kube-ctx=my-k8s-cluster --kube-ns=develocity"

The alias can then be run as a normal command:

# List commands
develocityctl

# Generate a support bundle
develocityctl support-bundle

Available commands

To see a list of available commands, run the tool with no arguments.

backup            Create and restore database backups
backup create     Create a database backup
backup copy       Copy a database backup to a local file
backup restore    Restore the database from a local backup file

build-scan         Work with Build Scan data
build-scan copy    Copy Build Scan data between Develocity installations.

config-file                 Provides tools for authoring a Develocity configuration file
config-file hash            Cryptographically hash a secret for storing in a config file
config-file generate-key    Create a key for symmetric encryption of secrets
config-file encrypt         Encrypt a secret value for storing in a config file
config-file encrypt-all     Encrypt all secrets of a config file
config-file decrypt         Decrypt an encrypted value from a config file
config-file decrypt-all     Decrypt all secrets of a config file
config-file validate        Verify that a config file is well-formed
config-file schema          Prints the JSON schema for Develocity configuration files

database                Execute commands on the Develocity database
database check-index    Check Develocity database indexes for corruption
database query          Execute queries against the Develocity database

license            Print license file details and convert between license file formats
license convert    Reads a Develocity license in any format and writes back out it in a specified format

support-bundle    Create a support bundle for sending to Gradle support

system                                      System command to interact with Develocity
system disable-default-identity-provider    Disable the default identity provider
system get-default-system-password          Get the default Develocity system password
system reset-system-password                Reset Develocity system password
system stop                                 Stop all Develocity components
system start                                Start Develocity components
system restart                              Restart Develocity
system test-notification                    Execute a notification test

beta                           Commands currently in beta stage
beta system                    System command to interact with Develocity
beta system prune-resources    Prunes stale kubernetes object from previous releases

Appendix A: Release history

1.10

2nd April 2024
  • [FIX] Develocityctl fails to run on Windows hosts

  • [NEW] Develocityctl requires Java 21+ runtime when used as a JAR

  • [NEW] Update JDK Docker base image to JDK 21.0.1-16

1.9

5th December 2023
  • Renamed to Develocityctl from Admin CLI

  • Require Java 17+ runtime when used as a JAR

  • Update JDK Docker base image to JDK 17.0.9-11

  • Adds flags to control the date range of logs captured in the support bundle

  • New command to copy Build Scan data between instances of Develocity

  • When generating a support bundle, Develocity prioritizes collecting other logs before proxy access logs

  • Command "support-bundle" now prints progress messages to the console

1.8.1

27th October 2023
  • Adds a flag to configure maximum time spent on gathering logs into a support bundle

  • Fix Admin CLI 1.8 fails to find database type in installations older than 2023.3

  • Fix typo in path when generating a support bundle

1.8

13th September 2023
  • Improvements to support bundle generation

1.7.3

18th July 2023
  • Update Alpine version to 3.18.0 in base image

1.7.2

09th May 2023
  • Update JDK Docker base image to JDK 11.0.19

1.7.1

18th April 2023
  • Fix Out of memory error when generating a support bundle

1.7

12th April 2023
  • Add system get-default-system-password command to get the default system password

1.6.3

20th February 2023
  • Fix database query errors not being reported

1.6.2

30th January 2023
  • Admin CLI attempts to find a Develocity installation if no namespace is provided

  • Admin CLI reports back if it can’t detect a GE instance when generating a support bundle

  • Update JDK Docker base image to JDK 11.0.18

1.6.1

20th December 2022
  • Malformed license data does not prevent support bundle generation

1.6

8th December 2022
  • Capture additional diagnostics in support bundles

  • Improve error handling when generating support bundles

  • Improve error reporting on backup upload failures

1.5.1

11th November 2022
  • Fix backup restore command file transfer issue in 1.5

1.5

8th November 2022
  • Add a system restart command to restart a Develocity deployment in one command.

  • Improve the speed of embedded database backup transfers

  • Update JDK Docker base image to JDK 11.0.17

1.4

10th August 2022
  • The database query command fails if not exactly one of the --query and --query-file options are passed to it.

  • If a custom shared database schema is configured, the database query command will use it when determining the search path for running queries.

  • The --no-output-file option doesn’t cause a non-zero exit code when used from the Docker image.

  • Backup commands fail fast when run against a user-managed database. When Develocity is configured to connect to a user-managed database, administrators should consult their database service provider or database administrator to configure backups.

  • Admin CLI creates intermediate directories with the correct ownership.

  • backup copy prints the local path on the installation host where backups are saved, when running in standalone-mode.

  • Update JDK Docker base image to JDK 11.0.16

1.3.1

19th May 2022
  • Mitigate RCE related to CVE-2022-30586

  • Update JDK Docker base image to JDK 11.0.15 to mitigate ECDSA vulnerability

1.3

19th April 2022
  • Remove get-installation-key command

1.2.1

25th March 2022
  • Handle file permissions correctly when run in a docker container

  • Treat absolute paths correctly during support bundle generation

1.2

3rd March 2022
  • Support for the Develocity Helm-based deployment platform, including the system, backup, support-bundle, license and database top-level commands

1.1

15th March 2021
  • Support for generating and validating the Develocity 2021.1 configuration model

1.0

28th October 2020
  • Support for generating and validating the Develocity 2020.4 configuration model via the config-file command

Appendix B: Compatibility with Develocity

Compatibility between versions of Develocity and the Develocity Admin CLI can be found in the compatibility document.

Appendix C: Develocityctl JAR downloads

Appendix D: (Legacy) Develocity Admin CLI JAR downloads