Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: add topic resource missing methods #22

Merged
merged 7 commits into from
Feb 8, 2024
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ import (
)

// TODO: We should update this on build. Part of the release process
var version = "ign"
var version = "0.0.0-alpha"

const defaultCloudEnv = "prod"

func main() {
var debug bool
Expand All @@ -20,7 +22,7 @@ func main() {

err := providerserver.Serve(
context.Background(),
redpanda.New(context.Background(), version),
redpanda.New(context.Background(), defaultCloudEnv, version),
providerserver.ServeOpts{
Address: "registry.terraform.io/redpanda-data/redpanda",
Debug: debug,
Expand Down
51 changes: 30 additions & 21 deletions proto/gen/go/redpanda/api/common/v1alpha1/money.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

123 changes: 96 additions & 27 deletions proto/gen/go/redpanda/api/dataplane/v1alpha1/common.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading