Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/enterprise/externalsecrets/get-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
Now, let's install the External Secrets Enterprise bundle using our Helm chart. This chart includes all the necessary components, including the web UI.

<Note>
The installation bundle is for a Trial License, which is available at https://externalsecrets.com/trial-license. By installing this bundle, you agree to the license terms.
The installation bundle is for a License, which is available at https://externalsecrets.com/license. By installing this bundle, you agree to the license terms.
</Note>

<Tabs>
Expand All @@ -44,7 +44,7 @@
helm install esi-bundle \
--namespace esi-bundle \
--create-namespace \
--set global.trialLicenseAccepted=true \
--set global.licenseAccepted=true \
--set global.waitForReady=true \
--set traefik.enabled=true \
--timeout 10m \
Expand All @@ -67,7 +67,7 @@
--namespace $ESO_RELEASE_NAMESPACE \
--set global.namespaces.externalSecrets.createNamespace=false \
--set external-secrets.namespaceOverride=$ESO_RELEASE_NAMESPACE \
--set global.trialLicenseAccepted=true \
--set global.licenseAccepted=true \
--set global.waitForReady=true \
--set traefik.enabled=true \
--timeout 10m \
Expand All @@ -91,7 +91,7 @@
</Accordion>

<Accordion title="3. Access the Web UI">
To access the web UI, you need to port-forward the Traefik service that was installed as part of the bundle. Traefik is used as an Ingress controller to expose the UI.

Check warning on line 94 in docs/enterprise/externalsecrets/get-started.mdx

View check run for this annotation

Mintlify / Mintlify Validation (externalsecrets) - vale-spellcheck

docs/enterprise/externalsecrets/get-started.mdx#L94

Did you really mean 'Traefik'?

Check warning on line 94 in docs/enterprise/externalsecrets/get-started.mdx

View check run for this annotation

Mintlify / Mintlify Validation (externalsecrets) - vale-spellcheck

docs/enterprise/externalsecrets/get-started.mdx#L94

Did you really mean 'Traefik'?

```bash
kubectl port-forward -n traefik svc/traefik 8080:80
Expand Down
6 changes: 3 additions & 3 deletions docs/enterprise/externalsecrets/installation/bundle.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* **External Secrets Enterprise**: The core component for managing secrets and enterprise edition of External Secrets Operator.
* **Enterprise UI**: A graphical user interface for managing secrets.
* **Enterprise Backend components**: handling authentication, authorization, and other enterprise features.
* **Ingress Controller**: Traefik is installed as an Ingress controller to expose the UI.

Check warning on line 12 in docs/enterprise/externalsecrets/installation/bundle.mdx

View check run for this annotation

Mintlify / Mintlify Validation (externalsecrets) - vale-spellcheck

docs/enterprise/externalsecrets/installation/bundle.mdx#L12

Did you really mean 'Traefik'?

## Installation Commands

Expand All @@ -22,7 +22,7 @@
helm install esi-bundle \
--namespace esi-bundle \
--create-namespace \
--set global.trialLicenseAccepted=true \
--set global.licenseAccepted=true \
--set global.waitForReady=true \
--timeout 10m \
oci://oci.externalsecrets.com/external-secrets-inc-registry/public/charts/esi-bundle
Expand All @@ -39,7 +39,7 @@
--namespace $ESO_RELEASE_NAMESPACE \
--set global.namespaces.externalSecrets.createNamespace=false \
--set external-secrets.namespaceOverride=$ESO_RELEASE_NAMESPACE \
--set global.trialLicenseAccepted=true \
--set global.licenseAccepted=true \
--set global.waitForReady=true \
--timeout 10m \
oci://oci.externalsecrets.com/external-secrets-inc-registry/public/charts/esi-bundle
Expand Down Expand Up @@ -131,7 +131,7 @@
| global.licenseFile | string | `"# your-enterprise-license-goes-here\n"` | |
| global.namespace | string | `"esi"` | |
| global.namespaces.externalSecrets.createNamespace | bool | `true` | |
| global.trialLicenseAccepted | bool | `false` | |
| global.licenseAccepted | bool | `false` | |
| global.waitForReady | bool | `false` | |
| mongodb.auth.database | string | `"admin"` | |
| mongodb.auth.enabled | bool | `true` | |
Expand Down