Skip to content

Commit

Permalink
Fix #1107: refactoring annotations and secret generation
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaferraro committed Jan 12, 2022
1 parent c0cc560 commit 7c9596c
Show file tree
Hide file tree
Showing 5 changed files with 201 additions and 71 deletions.
2 changes: 1 addition & 1 deletion addons/keda/duck/v1alpha1/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/

// Package duck contains a partial schema of the Keda APIs
// Package duck contains a partial schema of the KEDA APIs
// +kubebuilder:object:generate=true
// +groupName=keda.sh
package v1alpha1
6 changes: 3 additions & 3 deletions addons/keda/duck/v1alpha1/register.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ import (
)

const (
KedaGroup = "keda.sh"
KedaVersion = "v1alpha1"
KEDAGroup = "keda.sh"
KEDAVersion = "v1alpha1"
)

var (
// SchemeGroupVersion is group version used to register these objects.
SchemeGroupVersion = schema.GroupVersion{Group: KedaGroup, Version: KedaVersion}
SchemeGroupVersion = schema.GroupVersion{Group: KEDAGroup, Version: KEDAVersion}

// SchemeBuilder is used to add go types to the GroupVersionKind scheme.
SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
Expand Down
Loading

0 comments on commit 7c9596c

Please sign in to comment.