From e3083be80ceace9104fc53264bee6ac48122b956 Mon Sep 17 00:00:00 2001 From: Alfonso Acosta Date: Thu, 16 Jan 2020 19:14:24 +0100 Subject: [PATCH] Update FAQ with --registry-scanning --- docs/faq.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/docs/faq.md b/docs/faq.md index 55f4fd98c..5c37a99e1 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -339,7 +339,14 @@ If the replicas field is not present in Git, Flux will not override the replica ### Can I disable Flux registry scanning? -You can exclude images from being scanned by providing a list of glob expressions using the `registry-exclude-image` flag. +You can completely disable registry scanning by using the +`--registry-scanning=false` flag. This allows deploying Flux without Memcached. + + +If you only want to disable scanning for certain images, you can keep +`--registry-scanning` set to `true` (its default value) and tell Flux +what images to exclude. This is done by supplying a list of glob expressions +using the `registry-exclude-image` flag. Exclude images from Docker Hub and Quay.io: @@ -359,12 +366,6 @@ Exclude images containing `test` in the FQN: --registry-exclude-image=*test* ``` -Disable image scanning for all images: - -``` ---registry-exclude-image=* -``` - ### Does Flux support Kustomize/Templating/My favorite manifest factorization technology? Yes!