About unsealing the Secret Store
The Secret Store can become sealed under the following circumstances:
- After being manually sealed.
- After a power outage.
- Due to inability to access underlying storage (such as ZooKeeper) by the Vault instance.
A sealed Secret Store cannot be accessed from the web interface. Secret values cannot be retrieved using the Secrets API. Services that depend on values provisioned to them via environment variables may fail to deploy.
To unseal the Secret Store, complete the following steps. They will unseal just a single instance of dcos-secrets
. If the cluster URL obtained through dcos config show core.dcos_url
points to a load balancer and there is more than one master node in the cluster, then these steps should be issued against each master node instead, and the cluster URL should be changed to the address of individual master nodes.
The intended status of the seal is persisted, so if one of the prerequisites for sealing the store occurs, dcos-secrets
will unseal it again automatically even after being restarted. Only the steps depicted in sealing the store will seal it back.
Prerequisites:
- DC/OS CLI installed
- Logged into the DC/OS CLI as a superuser via
dcos auth login
- You must follow the steps in Downloading the Root Cert before issuing the
curl
commands in this section.
Unsealing a Secret Store sealed with default keys
-
From a terminal prompt, check the status of the Secret Store:
curl --cacert dcos-ca.crt -H "Authorization: token=$(dcos config show core.dcos_acs_token)" $(dcos config show core.dcos_url)/secrets/v1/seal-status/default
-
The Secret Store service should return a response like the following.
{"sealed":true,"threshold":1,"shares":1,"progress":0}
If the value of
"sealed"
isfalse
, stop now. If the Secret Store is not sealed, you cannot unseal it. -
Use the following
curl
command to unseal the store.curl -X PUT --cacert dcos-ca.crt -H "Authorization: token=$(dcos config show core.dcos_acs_token)" $(dcos config show core.dcos_url)/secrets/v1/auto-unseal/default
-
Confirm that the Secret Store was unsealed with this command.
curl --cacert dcos-ca.crt -H "Authorization: token=$(dcos config show core.dcos_acs_token)" $(dcos config show core.dcos_url)/secrets/v1/seal-status/default
The Secret Store service returns the following JSON response, indicating success.
{"sealed":false,"threshold":1,"shares":1,"progress":0}