The Charm Store will undergo scheduled database maintenance on July 5, 2026 22:00 to July 6, 02:00 UTC. During this time, you may be unable to access charm and bundle metadata or publish updates. No user action is required and services will automatically resume once maintenance is complete.

Vault

Platform:

Channel Revision Published Runs on
latest/edge 89 31 Jan 2024
Ubuntu 22.04 Ubuntu 20.04
latest/edge 9 27 Jan 2023
Ubuntu 22.04 Ubuntu 20.04
1.16/stable 502 20 Feb 2026
Ubuntu 22.04
1.16/candidate 502 19 Feb 2026
Ubuntu 22.04
1.16/beta 502 19 Feb 2026
Ubuntu 22.04
1.16/edge 502 19 Feb 2026
Ubuntu 22.04
2.0/candidate 565 01 Jul 2026
Ubuntu 24.04
2.0/beta 565 23 Jun 2026
Ubuntu 24.04
2.0/edge 571 03 Jul 2026
Ubuntu 24.04
2.0/edge 570 02 Jul 2026
Ubuntu 24.04
2.0/edge 569 02 Jul 2026
Ubuntu 24.04
1.19/stable 528 21 Apr 2026
Ubuntu 24.04
1.19/candidate 528 03 Apr 2026
Ubuntu 24.04
1.19/beta 528 03 Apr 2026
Ubuntu 24.04
1.19/edge 544 04 May 2026
Ubuntu 24.04
1.19/edge 543 04 May 2026
Ubuntu 24.04
1.18/stable 534 01 Jul 2026
Ubuntu 24.04
1.18/candidate 534 01 Jul 2026
Ubuntu 24.04
1.18/beta 534 01 Jul 2026
Ubuntu 24.04
1.18/edge 534 09 Apr 2026
Ubuntu 24.04
1.17/stable 354 11 Apr 2025
Ubuntu 24.04
1.17/candidate 354 11 Apr 2025
Ubuntu 24.04
1.17/beta 383 14 Jul 2025
Ubuntu 24.04
1.17/edge 491 12 Jan 2026
Ubuntu 24.04
1.15/stable 248 24 Jul 2024
Ubuntu 22.04
1.15/candidate 248 24 Jul 2024
Ubuntu 22.04
1.15/beta 248 24 Jul 2024
Ubuntu 22.04
1.15/edge 248 10 Jul 2024
Ubuntu 22.04
juju deploy vault-k8s --channel 1.19/stable

Unseal a sealed unit

In the circumstance that a Vault unit restarts, you will have to manually unseal it. This guide walks you through the necessary steps:

Starting from a cluster where one unit is sealed:

$ juju status
Model  Controller          Cloud/Region        Version  SLA          Timestamp
demo   microk8s-localhost  microk8s/localhost  3.4.0    unsupported  13:02:12-04:00

App    Version  Status   Scale  Charm      Channel    Rev  Address         Exposed  Message
vault           waiting      3  vault-k8s  1.15/beta  198  10.152.183.208  no       installing agent

Unit      Workload  Agent  Address      Ports  Message
vault/0*  active    idle   10.1.182.38         
vault/1   active    idle   10.1.182.51         
vault/2   blocked   idle   10.1.182.15         Please unseal Vault

Set the VAULT_ADDR variable to the sealed unit:

export VAULT_ADDR=https://$(juju status vault/2 --format=yaml |  yq '.applications.vault.units.vault/2.address'):8200; echo $VAULT_ADDR

Unseal the the unit using the same unseal keys as received during the initialization of the Vault leader:

vault operator unseal -tls-skip-verify EJoB62t286mjUpSQYZg3mOla3lz/bbElVL5OLnj+rpE=

The units will go back to the active/idle state:

$ juju status
Model  Controller          Cloud/Region        Version  SLA          Timestamp
demo   microk8s-localhost  microk8s/localhost  3.4.0    unsupported  13:03:26-04:00

App    Version  Status  Scale  Charm      Channel    Rev  Address         Exposed  Message
vault           active      3  vault-k8s  1.15/beta  198  10.152.183.208  no       

Unit      Workload  Agent  Address      Ports  Message
vault/0*  active    idle   10.1.182.38         
vault/1   active    idle   10.1.182.51         
vault/2   active    idle   10.1.182.15