add Escrow Buddy to TUF.md after the push to stable (#21066)

This commit is contained in:
Roberto Dip
2024-08-05 18:14:12 -03:00
committed by GitHub
parent afc292666c
commit 379aa9e6f7
2 changed files with 7 additions and 2 deletions
+2
View File
@@ -12,6 +12,7 @@ Following are the currently deployed versions of fleetd components on the `stabl
| osqueryd | 5.12.1 | 5.12.1 | 5.12.1 | 5.12.1 |
| nudge | 1.1.10.81462 | - | - | - |
| swiftDialog | 2.1.0 | - | - | - |
| escrowBuddy | 1.0.0 | - | - | - |
## `edge`
@@ -22,3 +23,4 @@ Following are the currently deployed versions of fleetd components on the `stabl
| osqueryd | 5.13.0 | 5.13.0 | 5.13.0 | 5.13.0 |
| nudge | - | - | - | - |
| swiftDialog | - | - | - | - |
| escrowBuddy | - | - | - | - |
+5 -2
View File
@@ -186,6 +186,9 @@ func channelVersionCommand() *cli.Command {
"swiftDialog": {
"macos": "swiftDialog.app.tar.gz",
},
"escrowBuddy": {
"macos": "escrowBuddy.pkg",
},
}
var (
channel string
@@ -208,7 +211,7 @@ func channelVersionCommand() *cli.Command {
&cli.StringSliceFlag{
Name: "components",
EnvVars: []string{"TUF_STATUS_COMPONENTS"},
Value: cli.NewStringSlice("orbit", "desktop", "osqueryd", "nudge", "swiftDialog"),
Value: cli.NewStringSlice("orbit", "desktop", "osqueryd", "nudge", "swiftDialog", "escrowBuddy"),
Destination: &components,
Usage: "List of components",
},
@@ -324,7 +327,7 @@ func channelVersionCommand() *cli.Command {
Right: true,
})
var rows [][]string
componentsInOrder := []string{"orbit", "desktop", "osqueryd", "nudge", "swiftDialog"}
componentsInOrder := []string{"orbit", "desktop", "osqueryd", "nudge", "swiftDialog", "escrowBuddy"}
setIfEmpty := func(m map[string]string, k string) string {
v := m[k]
if v == "" {