# Verification

The [Beyond Defaults](beyond-defaults) page covers the values you send into the
chart. This page covers the opposite direction. It shows how a deployer can see
what is actually running, including the material the deployment generates on its
own, such as service provider signing keys and SAML metadata.

## Values in the release

Render the manifests without installing, to preview the result of your
overrides:

```bash
helm template <Release.Name> cortex/cortex -f my-values.yaml -n <NAMESPACE>
```

After an install, inspect the values a release was actually given:

```bash
helm get values <Release.Name> -n <NAMESPACE>
```

See every manifest the release currently has applied, with the defaults and
overrides already resolved:

```bash
helm get manifest <Release.Name> -n <NAMESPACE>
```
