See also: Client
This document shows how to install and manage your Juju client – whether it is the juju
client, the terraform juju
client, or the python-libjuju
client.
See more:
juju
,terraform juju
,python-libjuju
Here and throughout the how-to guides, to view content specific to your client of interest, in each section select the tab for that client. The decision will stick until you select another client.
Install the client
Install from snap.
Why install from snap? Snaps get updated automatically. Thus, your client will be updated automatically as soon as a new Juju release becomes available.
Snap command not available on your system? Visit snapcraft.io for instructions on how to install snapd
.
To install the latest juju
client from snap, run:
sudo snap install juju
To select a particular version, run snap info juju
to find out what versions are available, then sudo snap install juju --channel=<track/risk[/branch]>
to install the version of your choice (e.g., sudo snap install juju --channel=3.4/stable
).
Example
$ snap info juju
name: juju
summary: Juju - a model-driven operator lifecycle manager for K8s and
machines
publisher: Canonical✓
store-url: https://snapcraft.io/juju
contact: https://canonical.com/
license: AGPL-3.0
description: |
A model-driven **universal operator lifecycle manager** for multi cloud and
hybrid cloud application management on K8s and machines.
**What is an operator lifecycle manager?**
Kubernetes operators are containers with operations code, that drive your
applications on K8s. Juju is an operator lifecycle manager that manages the
installation, integration and configuration of operators on the cluster.
Juju also extends the idea of operators to traditional application
management on Linux and Windows servers, or cloud instances.
**Model-driven operations and integration**
Organise your operators into models, which group together applications that
can be tightly integrated on the same substrate and operated by the same
team. Capture resource allocation, storage, networking and integration
information in the model to simplify ongoing operations.
**Better day-2 operations**
Each operator code package, called a charm, declares methods for actions
like back, restore, or security audit. Calling these methods provides
remote administration of the application with no low-level access required.
**Learn more**
- https://juju.is/
- https://discourse.charmhub.io/
- https://github.com/juju/juju
commands:
- juju
services:
juju.fetch-oci: oneshot, disabled, inactive
snap-id: e2CPHpB1fUxcKtCyJTsm5t3hN9axJ0yj
tracking: 3.1/stable
refresh-date: 2024-01-03
channels:
3/stable: 3.4.0 2024-03-07 (26548) 99MB -
3/candidate: ↑
3/beta: ↑
3/edge: ↑
4.0/stable: –
4.0/candidate: –
4.0/beta: 4.0-beta2 2024-01-11 (25984) 98MB -
4.0/edge: 4.0-beta3-ec9b93b 2024-02-19 (26600) 98MB -
4/stable: –
4/candidate: –
4/beta: 4.0-beta2 2024-01-17 (25984) 98MB -
4/edge: ↑
3.5/stable: –
3.5/candidate: –
3.5/beta: –
3.5/edge: 3.5-beta1-c3de749 2024-03-12 (26766) 98MB -
3.4/stable: 3.4.0 2024-02-15 (26548) 99MB -
3.4/candidate: ↑
3.4/beta: ↑
3.4/edge: 3.4.1-14d5608 2024-03-13 (26783) 98MB -
3.3/stable: 3.3.3 2024-03-06 (26652) 99MB -
3.3/candidate: ↑
3.3/beta: ↑
3.3/edge: 3.3.4-65b78cd 2024-03-13 (26779) 99MB -
3.2/stable: 3.2.4 2023-11-22 (25443) 95MB -
3.2/candidate: ↑
3.2/beta: ↑
3.2/edge: 3.2.5-9e20221 2023-11-17 (25455) 95MB -
3.1/stable: 3.1.7 2024-01-03 (25751) 95MB -
3.1/candidate: ↑
3.1/beta: ↑
3.1/edge: 3.1.8-1a8d6a3 2024-03-12 (26750) 95MB -
2.9/stable: 2.9.46 2023-12-05 (25672) 120MB classic
2.9/candidate: 2.9.47 2024-03-07 (26724) 120MB classic
2.9/beta: ↑
2.9/edge: 2.9.48-dfd7fee 2024-03-07 (26740) 120MB classic
2.8/stable: 2.8.13 2021-11-11 (17665) 74MB classic
2.8/candidate: ↑
2.8/beta: ↑
2.8/edge: ↑
installed: 3.1.7 (25751) 95MB -
$ sudo snap install juju --channel=3.4/stable
To install multiple versions of juju
via snap, enable snap
’s experimental parallel-install feature, reboot, then install a different version with a different name.
See more: Snap | Channels
Example
# Enable snap's experimental parallel-install feature:
sudo snap set system experimental.parallel-instances=true`
# Reboot.
# Install juju 2.9 under the name 'juju_29'
sudo snap install --channel 2.9/stable juju_29 --classic
# Install juju 3.3 under the name 'juju_33'
sudo snap install --channel 3.3/stable juju_33
# Test your 2.9 client:
juju_29 status
# Test your 3.3 client:
juju_33 status
See more: Snap | Parallel installs
Install from binary.
This method allows you to install the Juju client on systems that do not support snaps.
- Visit the project’s downloads page and select the binary that matches your system’s architecture and the version that you want to install.
For example, to download the 2.9.38 client for amd64:
curl -LO https://launchpad.net/juju/2.9/2.9.38/+download/juju-2.9.38-linux-amd64.tar.xz
- Validate the downloaded binary archive (optional)
Download the md5 checksum that matches the binary you just downloaded:
The link to the md5
signature can be constructed by appending /+md5
to the end of the link you just downloaded.
curl -L https://launchpad.net/juju/2.9/2.9.38/+download/juju-2.9.38-linux-amd64.tar.xz/+md5 -o juju.md5
Validate the downloaded binary archive against the checksum file:
cat juju.md5 | md5sum --check
If the checksum check succeeds, the output will be:
juju-2.9.38-linux-amd64.tar.xz: OK
If the check fails, md5sum exits with nonzero status and prints output similar to:
juju-2.9.38-linux-amd64.tar.xz: FAILED
md5sum: WARNING: 1 computed checksum did NOT match
- Unpack and install client binary
tar xf juju-2.9.38-linux-amd64.tar.xz
sudo install -o root -g root -m 0755 juju /usr/local/bin/juju
- Test that the version of the client you installed is up to date
juju version
Build from source.
Visit the downloads section of the Launchpad project to download a tar.gz with Juju source code. For build instructions refer to the contributing to Juju documentation on Github.
The Juju client is available on Homebrew and can be installed as follows:
brew install juju
Visit the project’s downloads page and select the signed installer for the Juju version you wish to install.
To install the terraform juju
client, install the terraform
CLI:
For example, on a Linux that supports snaps:
sudo snap install terraform
[TO BE ADDED]
In PyPI, which is the Python repository that pip
is drawing modules from, python-libjuju
is simply referred to as juju
. You can install it directly via pip
:
pip3 install juju
[TO BE ADDED]
[TO BE ADDED]
Use the client
Use the juju
client reference and the Juju how-to guides to build up your deployment.
See:
Once you’ve installed the terraform
CLI, to start using the terraform juju
client:
- Require the
juju
provider. In your Terraform plan, underrequired_providers
, specify thejuju
provider:
terraform {
required_providers {
juju = {
version = "~> 0.10.0"
source = "juju/juju"
}
}
}
2. Configure the provider to use a pre-existing controller. There are 3 ways you can do this:
juju show-controller --show-password
Configure the provider using static credentials
In your Terraform plan, in your provider specification, use the various keywords to provide your controller information statically:
provider "juju" {
controller_addresses = "10.225.205.241:17070,10.225.205.242:17070"
username = "jujuuser"
password = "password1"
ca_certificate = file("~/ca-cert.pem")
}
Configure the provider using environment variables
In your Terraform plan, leave the provider
specification empty:
provider "juju" {}
Then, in a terminal, export the controller environment variables with your controller’s values. For example:
export JUJU_CONTROLLER_ADDRESSES = "10.225.205.241:17070,10.225.205.242:17070"
export JUJU_USERNAME="jujuuser"
export JUJU_PASSWORD="password1"
export JUJU_CA_CERT= file("~/ca-cert.pem")
Configure the provider using the `juju` client
In your Terraform plan, leave the provider
specification empty:
provider "juju" {}
Then, in a terminal, use the juju
client to switch to the desired controller: juju switch <controller>
. Your Terraform plan will be interpreted relative to that controller.
- Use the
terraform juju
client reference and the Juju how-to guides to build up your deployment.
See more:
-
Once you’re done, in a terminal, run:
a. (just the first time)
terraform init
to initialise your project;b.
terraform plan
to stage the changes; andc.
terraform apply
to apply the changes to your Juju deployment.
- After installing
python-libjuju
, import it into your Python script as follows:
import juju
You can also import specific modules to use, depending on your use case:
from juju import model
or
from juju import controller
Examples of different use cases of this client can be found in the docs, as well as in the examples
directory in the repository which can be run using tox
. For
example, to run examples/connect_current_model.py
, use:
tox -e example -- examples/connect_current_model.py
Or you can directly run it via python as well:
$ python3 examples/connect_current_model.py
To experiment with the library in a REPL, launch Python repl with asyncio module loaded, as follows:
$ python3 -m asyncio
and then, for example to connect to the current model and fetch status:
>>> from juju.model import Model
>>> model = Model()
>>> await model.connect_current()
>>> status = await model.get_status()
Whichever your chosen method, use the python-libjuju
client reference and the Juju how-to guides to build up your deployment.
See more:
Back up the client
A backup of the client enables one to regain management control of one’s controllers and associated cloud environments.
Create a backup of the juju
client. Making a copy of the client directory is sufficient for backing up the client. This is normally done with backup software that compresses the data into a single file (archive). On a Linux/Ubuntu system, the tar
program is a common choice:
cd ~
tar -cpzf juju-client-$(date "+%Y%m%d-%H%M%S").tar.gz .local/share/juju
For Microsoft Windows any native Windows backup tool will do.
The above invocation embeds a timestamp in the generated archive’s filename, which is useful for knowing when a backup was made. You may, of course, call it what you wish.
The archive should normally be transferred to another system (or at the very least to a different physical drive) for safe-keeping.
Whoever has access to a client backup will have access to its associated environments. Appropriate steps should be taken to protect it (e.g. encryption).
Restore the juju
client from a backup. To restore your client from a backup, extract the backup created earlier. E.g., on Ubuntu:
This command will extract the contents of the archive and overwrite any existing files in the Juju directory. Make sure that this is what you want.
cd ~
tar -xzf juju-yymmdd-hhmmss.tar.gz
The terraform juju
client does not support this.
The python-libjuju
client does not support this.
Upgrade the client
See also: Upgrading things
If you’ve installed via snap
.
Ensure you’ve created a backup of your ./local/share/juju before starting the upgrade process for the client.
If the Juju client was installed via snap, the updates to the client should be handled automatically. Run snap info juju
to view a list of releases and juju version
to view the current release.
If there has been a new release but the juju
snap hasn’t been refreshed, you can manually trigger this with sudo snap refresh juju
. To refresh to a specific version, run the refresh
command with the --channel=<track/version>
option, e.g.
sudo snap refresh juju --channel 3/stable
See more: Snap | Managing updates, Snap | Channels
[TO BE ADDED]
[TO BE ADDED]
To upgrade the terraform juju
client, in your Terraform plan update the version constraint, then run terraform init
with the --upgrade
flag.
See more: Terraform | Version constraints,
terraform init --upgrade
[TO BE ADDED]
[TO BE ADDED]
[TO BE ADDED]
[TO BE ADDED]
[TO BE ADDED]
Uninstall the client
If you’ve installed juju
via snap
: To uninstall, run:
sudo snap remove juju
[TO BE ADDED]
[TO BE ADDED]
[TO BE ADDED]
[TO BE ADDED]
[TO BE ADDED]
[TO BE ADDED]
[TO BE ADDED]
[TO BE ADDED]
Contributors: @cderici, @hmlanigan, @simonrichardson, @timclicks, @tmihoc