Files
vault/website/pages/docs/platform/k8s/helm/examples/standalone-load-balanced-ui.mdx
Michael Golowka OR 1=1); DROP TABLE users; -- ac33c32639 Update Kubernetes docs to include Kubernetes Auth method (#8046)
* Improve standalone with TLS example

- Documented creating a key & cert for serving Vault endpoints
- Removed unneeded configuration in custom values.yaml
- Updated examples to 1.3.0

* Add 127.0.0.1 to CSR

* Grammar & minor formatting

* Add additional DNS entry for CSR

* Split examples into individual pages

* Add Kubernetes Auth Method example

* Remove old examples file

* Fix rebase fail

* Remove global section of yaml files that aren't needed

* Fix minor typos

* Fix typos that didn't get carried over from previous PR

* Re-copy from previous examples file to resolve rebase issues

* update dependencies

Co-authored-by: Jeff Escalante <jescalan@users.noreply.github.com>
2020-01-23 13:14:01 -07:00

45 lines
1.0 KiB
Plaintext

---
layout: "docs"
page_title: "Standalone Server with Load Balanced UI"
sidebar_current: "docs-platform-k8s-examples-standalone-load-balanced-ui"
sidebar_title: "Standalone Server with Load Balanced UI"
description: |-
Describes how to set up a standalone Vault with a load balanced UI
---
# Standalone Server with Load Balanced UI
~> **Important Note:** This chart is not compatible with Helm 3. Please use Helm 2 with this chart.
The below `values.yaml` can be used to set up a single server Vault cluster with a LoadBalancer to allow external access to the UI and API.
```yaml
server:
standalone:
enabled: true
config: |
ui = true
listener "tcp" {
tls_disable = 1
address = "[::]:8200"
cluster_address = "[::]:8201"
}
storage "file" {
path = "/vault/data"
}
service:
enabled: true
dataStorage:
enabled: true
size: 10Gi
storageClass: null
accessMode: ReadWriteOnce
ui:
enabled: true
serviceType: LoadBalancer
```