-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add missing title & description page
- this is a partial backport of 7a23cb0, specifically only the docs for _existing_ features - this is a useful feature that was previously undocumented Signed-off-by: Anton Gilgur <[email protected]> (cherry picked from commit a34d989)
- Loading branch information
Anton Gilgur
committed
Sep 21, 2024
1 parent
464965c
commit 4a521a5
Showing
4 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -217,6 +217,7 @@ v3.3 | |
v3.3. | ||
v3.4 | ||
v3.4. | ||
v3.4.4 | ||
validator | ||
versioning | ||
webHDFS | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Title and Description | ||
|
||
> v3.4.4 and after | ||
You can add the `workflows.argoproj.io/title` and `workflows.argoproj.io/description` annotations to a Workflow to display in the workflow lists: | ||
|
||
```yaml | ||
apiVersion: argoproj.io/v1alpha1 | ||
kind: Workflow | ||
metadata: | ||
name: my-wf | ||
annotations: | ||
workflows.argoproj.io/title: 'Build and test' # defaults to `metadata.name` if not specified | ||
workflows.argoproj.io/description: 'SuperDuperProject PR #6529: Implement frobbing (aff39ee)' | ||
``` | ||
The above manifest will render as a row like the below image: | ||
![Title and Description Example](assets/workflow-title-and-description.png) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters