From a8bad5e9f767cc8b8f5b15c7f9cd6f97040cf9de Mon Sep 17 00:00:00 2001 From: Akash Shrivastava Date: Sat, 13 Jan 2024 01:40:25 +0530 Subject: [PATCH] added values example for helm Signed-off-by: Akash Shrivastava --- docs/source/collect/helm.md | 39 +++++++++++++++++++++++-------------- 1 file changed, 24 insertions(+), 15 deletions(-) diff --git a/docs/source/collect/helm.md b/docs/source/collect/helm.md index e3bb7365..2ef42645 100644 --- a/docs/source/collect/helm.md +++ b/docs/source/collect/helm.md @@ -92,21 +92,30 @@ When this collector is executed, it will include the following files in a suppor ```json [ - { - "releaseName": "mysql-1692919203", - "chart": "mysql", - "chartVersion": "9.10.9", - "appVersion": "8.0.34", - "namespace": "default", - "releaseHistory": [ - { - "revision": "1", - "date": "2023-08-25 11:20:05.153483 +1200 NZST", - "status": "deployed", - "values": {}, - } - ] - } + { + "releaseName": "mysql-1692919203", + "chart": "mysql", + "chartVersion": "9.10.9", + "appVersion": "8.0.34", + "namespace": "default", + "releaseHistory": [ + { + "revision": "1", + "date": "2023-08-25 11:20:05.153483 +1200 NZST", + "status": "deployed", + "values": { + "affinity": {}, + "image": { + "digest": "", + "pullPolicy": "IfNotPresent", + "pullSecrets": [], + "registry": "docker.io", + "repository": "bitnami/git", + "tag": "2.41.0-debian-11-r76" + }, + }, + } + } ] ```