From c05a6b92968eb6ec1d2bdcc0b80e2e5a5bd65349 Mon Sep 17 00:00:00 2001 From: "docs.yml" <> Date: Fri, 27 Sep 2024 20:02:07 +0000 Subject: [PATCH] docs.yml --- site/content/en/main/user-guide/customization.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/site/content/en/main/user-guide/customization.md b/site/content/en/main/user-guide/customization.md index 861babd9c..cba695237 100644 --- a/site/content/en/main/user-guide/customization.md +++ b/site/content/en/main/user-guide/customization.md @@ -6,6 +6,18 @@ weight: 120 This document outlines how to customize the build output through Helm overrides and `package.json` configurations. +## Redact Store Values from Logs + +By default, the store values are displayed in logs, to redact them you can set the `PEPR_STORE_REDACT_VALUES` environment variable to `true` in the `package.json` file or directly on the Watcher or Admission `Deployment`. The default value is `undefined`. + +```json +{ + "env": { + "PEPR_STORE_REDACT_VALUES": "true" + } +} +``` + ## Display Node Warnings You can display warnings in the logs by setting the `PEPR_NODE_WARNINGS` environment variable to `true` in the `package.json` file or directly on the Watcher or Admission `Deployment`. The default value is `undefined`.