You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
vuepress adds a `v:pre` tag to a fenced code block, which escapes
any vue interpolation so you see the full, unaffected code. this
interferes with instances where you need the vue interpolation for the
code to make sense. I updated an escaped code block to use the same
style as a block earlier in the snippet so that interpolation works.
see vuejs/vuepress#413
Copy file name to clipboardExpand all lines: docs/.vuepress/_snippets/install_os.md
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -32,10 +32,9 @@ You can start the control-plane with: `kuma-{{ $page.latestVersion }}/bin/kuma-c
32
32
This example will run Kuma in `standalone` mode for a "flat" deployment, but there are more advanced [deployment modes](../introduction/deployments.md) like "multi-zone".
33
33
34
34
We suggest adding the `kumactl` executable to your `PATH` so that it's always available in every working directory. Or - alternatively - you can also create link in `/usr/local/bin/` by executing:
**Note**: By default this will run Kuma with a `memory`[store](../documentation/configuration.md), but for production you have to use a persistent storage like PostgreSQL by updating the `conf/kuma-cp.conf` file.
0 commit comments