Skip to content

Commit

Permalink
fix: Add backend 'https' to default index
Browse files Browse the repository at this point in the history
Signed-off-by: QJoly <quentinj@une-pause-cafe.fr>
  • Loading branch information
qjoly authored and poiana committed Apr 17, 2024
1 parent 72decef commit e5bc056
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions internal/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,9 @@ func init() {
IndexesDir = filepath.Join(FalcoctlPath, "indexes")
ClientCredentialsFile = filepath.Join(FalcoctlPath, "clientcredentials.json")
DefaultIndex = Index{
Name: "falcosecurity",
URL: "https://falcosecurity.github.io/falcoctl/index.yaml",
Name: "falcosecurity",
URL: "https://falcosecurity.github.io/falcoctl/index.yaml",
Backend: "https",
}
DefaultDriver = Driver{
Type: []string{drivertype.TypeModernBpf, drivertype.TypeBpf, drivertype.TypeKmod},
Expand Down

0 comments on commit e5bc056

Please sign in to comment.