Skip to content

Commit

Permalink
Merge pull request #4386 from turbot/v0.24.x
Browse files Browse the repository at this point in the history
Release Steampipe v0.24.1
  • Loading branch information
kaidaguerre authored Sep 13, 2024
2 parents b8cdb01 + 58bc3bb commit 7571af1
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.24.1 [2024-09-13]
_Bug fixes_
- Fix issue where steampipe failed to download embedded PostgreSQL database and FDW during installation. ([#4382](https://github.com/turbot/steampipe/issues/4382))

## v0.24.0 [2024-09-05]
_Whats new_
- Add ability to configure plugin startup timeout. ([#4320](https://github.com/turbot/steampipe/issues/4320))
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[<picture><source media="(prefers-color-scheme: dark)" srcset="https://steampipe.io/images/steampipe-color-logo-and-wordmark-with-white-bubble.svg"><source media="(prefers-color-scheme: light)" srcset="https://steampipe.io/images/steampipe-color-logo-and-wordmark-with-white-bubble.svg"><img width="67%" alt="Steampipe Logo" src="https://steampipe.io/images/steampipe-color-logo-and-wordmark-with-white-bubble.svg"></picture>](https://steampipe.io?utm_id=gspreadme&utm_source=github&utm_medium=repo&utm_campaign=github&utm_content=readme)

[![plugins](https://img.shields.io/badge/apis_supported-140-blue)](https://hub.powerpipe.io/plugins?utm_id=gspreadme&utm_source=github&utm_medium=repo&utm_campaign=github&utm_content=readme) &nbsp;
[![plugins](https://img.shields.io/badge/apis_supported-140-blue)](https://hub.steampipe.io/) &nbsp;
[![slack](https://img.shields.io/badge/slack-2297-blue)](https://turbot.com/community/join?utm_id=gspreadme&utm_source=github&utm_medium=repo&utm_campaign=github&utm_content=readme) &nbsp;
[![maintained by](https://img.shields.io/badge/maintained%20by-Turbot-blue)](https://turbot.com?utm_id=gspreadme&utm_source=github&utm_medium=repo&utm_campaign=github&utm_content=readme)

Expand All @@ -19,7 +19,7 @@ Steampipe is the zero-ETL solution for getting data directly from APIs and servi

## Steampipe API plugins

The Steampipe community has grown a suite of [plugins](https://hub.powerpipe.io/plugins?utm_id=gspreadme&utm_source=github&utm_medium=repo&utm_campaign=github&utm_content=readme) that map APIs to database tables. They work with all Steampipe engines.
The Steampipe community has grown a suite of [plugins](https://hub.steampipe.io/) that map APIs to database tables. They work with all Steampipe engines.


## Install Steampipe
Expand All @@ -41,7 +41,7 @@ brew install steampipe

## Install a plugin

Choose a plugin from the [hub](https://hub.powerpipe.io?utm_id=gspreadme&utm_source=github&utm_medium=repo&utm_campaign=github&utm_content=readme), for example: [Hacker News](https://hub.powerpipe.io/plugins/turbot/hackernews?utm_id=gspreadme&utm_source=github&utm_medium=repo&utm_campaign=github&utm_content=readme).
Choose a plugin from the [hub](https://hub.steampipe.io/), for example: [Hacker News](https://hub.steampipe.io/plugins/turbot/hackernews).

Run the `steampipe plugin` command to install it.

Expand Down
6 changes: 5 additions & 1 deletion pkg/constants/image.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
package constants

const (
BaseImageRef = "ghcr.io/turbot/steampipe/plugins"
// The BaseImageRef is the common prefix for all turbot managed steampipe images
// Embedded PG: ghcr.io/turbot/steampipe/db
// FDW: ghcr.io/turbot/steampipe/fdw
// Plugins: ghcr.io/turbot/steampipe/plugins/turbot/plugin
BaseImageRef = "ghcr.io/turbot/steampipe"
)
2 changes: 1 addition & 1 deletion pkg/ociinstaller/ocidownloader.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ package ociinstaller
import (
"context"
"encoding/json"
"github.com/turbot/steampipe/pkg/constants"
"log"
"strings"

"github.com/containerd/containerd/remotes"
"github.com/containerd/containerd/remotes/docker"
ocispec "github.com/opencontainers/image-spec/specs-go/v1"
"github.com/sirupsen/logrus"
"github.com/turbot/steampipe/pkg/constants"
"oras.land/oras-go/v2"
"oras.land/oras-go/v2/content"
"oras.land/oras-go/v2/content/file"
Expand Down

0 comments on commit 7571af1

Please # to comment.