From 65b5e568ff9c0b06c269671b169c7ac811cd9339 Mon Sep 17 00:00:00 2001
From: Varac <varac@varac.net>
Date: Wed, 15 Jan 2020 09:55:32 +0100
Subject: [PATCH] Add helm-operator query example

---
 docs/maintenance.md | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/docs/maintenance.md b/docs/maintenance.md
index dc84b06d0..883a23cfc 100644
--- a/docs/maintenance.md
+++ b/docs/maintenance.md
@@ -26,12 +26,17 @@ Please also refer to the [LogQL documentation](https://github.com/grafana/loki/b
 
 #### Flux
 
-Flux is responsible for installing applications. 
+Flux is responsible for installing applications. It used `helm-operator` to
+deploy the desired helm releases.
 
 Query all messages from `flux`:
 
     {app="flux"}
 
+Query all messages from `flux` and `helm-operator`:
+
+    {app=~"(flux|helm-operator)"}
+
 `flux` messages containing `wordpress`:
 
     {app = "flux"} |= "wordpress"
-- 
GitLab