From f730f972c048a62fb0e24c76fc58cfe636c5ffce Mon Sep 17 00:00:00 2001 From: yxxhero Date: Mon, 31 Mar 2025 07:06:14 +0800 Subject: [PATCH] docs(fix): correct typo in 'tier=fronted' to 'tier=frontend' Signed-off-by: yxxhero --- docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index 46d574d7..c83a032c 100644 --- a/docs/index.md +++ b/docs/index.md @@ -764,7 +764,7 @@ For additional context, take a look at [paths examples](paths.md). A selector can be used to only target a subset of releases when running Helmfile. This is useful for large helmfiles with releases that are logically grouped together. -Labels are simple key value pairs that are an optional field of the release spec. When selecting by label, the search can be inverted. `tier!=backend` would match all releases that do NOT have the `tier: backend` label. `tier=fronted` would only match releases with the `tier: frontend` label. +Labels are simple key value pairs that are an optional field of the release spec. When selecting by label, the search can be inverted. `tier!=backend` would match all releases that do NOT have the `tier: backend` label. `tier=frontend` would only match releases with the `tier: frontend` label. Multiple labels can be specified using `,` as a separator. A release must match all selectors in order to be selected for the final helm command.