From 7f4440854167621ddd48f10c33dd895d89846ec8 Mon Sep 17 00:00:00 2001 From: yxxhero <11087727+yxxhero@users.noreply.github.com> Date: Mon, 31 Mar 2025 07:08:15 +0800 Subject: [PATCH] docs(fix): correct typo in 'tier=fronted' to 'tier=frontend' (#1980) 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.