Skip to content

Commit

Permalink
fixup: use correct json/protobuf field name casing
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Vidal <[email protected]>
  • Loading branch information
avidal committed May 17, 2024
1 parent f0ee888 commit ff1d5f8
Show file tree
Hide file tree
Showing 4 changed files with 606 additions and 606 deletions.
4 changes: 2 additions & 2 deletions pkg/apis/core/v1alpha1/extensionrepo_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,14 @@ type ExtensionRepoSpec struct {
// extension at load time that looks like:
// load("ext://internal/ext-name", "...")
// +optional
LoadHost string `json:"load_host,omitempty" protobuf:"bytes,3,opt,name=load_host"`
LoadHost string `json:"loadHost,omitempty" protobuf:"bytes,3,opt,name=loadHost"`

// A path within the repository root that contains all extensions. By default, all extensions
// are expected to live at the repository root.
// Note that it is an error for this to be set for extension repositories using file:// URLs.
// For directory based extension repositories, you can add the subpath in the URL.
// +optional
GitSubpath string `json:"git_subpath,omitempty" protobuf:"bytes,4,opt,name=git_subpath"`
GitSubpath string `json:"gitSubpath,omitempty" protobuf:"bytes,4,opt,name=gitSubpath"`
}

var (
Expand Down
Loading

0 comments on commit ff1d5f8

Please sign in to comment.