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
chore: adds memory warning persistently if storeType=memory (kumahq#1589)
Adds/uses new index.html `storeType` variable and shows a persistent warning if that equals `memory`
I also moved `pathConfigDefault` over into `src/services/env` as we only use it for `env` type things so that seemed to make sense.
Lastly, I noticed a CSS issue in onboarding with the radio groups, so I fixed that up while I was here.
Signed-off-by: John Cowen <[email protected]>
Copy file name to clipboardexpand all lines: src/locales/en-us/common/index.yaml
+2-2
Original file line number
Diff line number
Diff line change
@@ -18,9 +18,9 @@ common:
18
18
CERT_EXPIRED: !!text/markdown |
19
19
The certificate for this dataplane has expired
20
20
ZONE_STORE_TYPE_MEMORY: !!text/markdown |
21
-
This zone is using the `memory` store type, because the state is not persisted this store should **not** be used in production. <a target="_blank" href="{KUMA_DOCS_URL}/documentation/configuration/#store">Read more about store types</a>
21
+
This zone is using the `memory` store type. **Don't** use this store in production because the state isn't persisted. <a target="_blank" href="{KUMA_DOCS_URL}/documentation/configuration/#store">Read more about store types</a>
22
22
GLOBAL_STORE_TYPE_MEMORY: !!text/markdown |
23
-
This control plane is using the `memory` store type, because the state is not persisted this store should **not** be used in production. <a target="_blank" href="{KUMA_DOCS_URL}/documentation/configuration/#store">Read more about store types</a>
23
+
This control plane is using the `memory` store type. **Don't** use this store in production because the state isn't persisted. <a target="_blank" href="{KUMA_DOCS_URL}/documentation/configuration/#store">Read more about store types</a>
24
24
INCOMPATIBLE_UNSUPPORTED_ENVOY: !!text/markdown |
25
25
Envoy (**{ envoy }**) is unsupported by the current version of Kuma DP (**{ kumaDp }**)
0 commit comments