Skip to content

Commit

Permalink
docs: update k8s examples section part of the page (#2720)
Browse files Browse the repository at this point in the history
  • Loading branch information
cherrymu committed Sep 7, 2021
1 parent 048156d commit 1d6eeba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/docs/guides/kubernetes-helm-chart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -143,14 +143,14 @@ Let's install the Login and Consent App first

```bash
$ helm install hydra-example-idp ory/example-idp \
--set 'hydraAdminUrl=http://hydra-example-admin:4445/' \
--set 'hydraAdminUrl=http://hydra-example-admin/' \
--set 'hydraPublicUrl=http://public.hydra.localhost/' \
--set 'ingress.enabled=true'
```

with hostnames

- `http://hydra-example-admin:4445/` corresponding to deployment name
- `http://hydra-example-admin` corresponding to deployment name
`--name hydra-example` (see next code sample) with suffix `-admin` which is
the hostname of the ORY Hydra Admin API Service.
- `https://public.hydra.localhost/` which is the default value for
Expand All @@ -163,7 +163,7 @@ the ORY Hydra Helm Chart

```bash
$ helm install hydra-example ory/hydra \
--set 'hydra.config.secrets.system=$(LC_ALL=C tr -dc 'A-Za-z0-9' < /dev/urandom | base64 | head -c 32)' \
--set 'hydra.config.secrets.system={'$(LC_ALL=C tr -dc 'A-Za-z0-9' < /dev/urandom | base64 | head -c 32)'}' \
--set 'hydra.config.dsn=memory' \
--set 'hydra.config.urls.self.issuer=http://public.hydra.localhost/' \
--set 'hydra.config.urls.login=http://example-idp.localhost/login' \
Expand Down

0 comments on commit 1d6eeba

Please sign in to comment.