896a56ada8
* migrate to new manifest format * rename app to alerting.notifications to not conflict with rules * disable custom field selectors as they are not supported in appinstaller
19 lines
481 B
Go
19 lines
481 B
Go
package v0alpha1
|
|
|
|
import "k8s.io/apimachinery/pkg/runtime/schema"
|
|
|
|
const (
|
|
// APIGroup is the API group used by all kinds in this package
|
|
APIGroup = "notifications.alerting.grafana.app"
|
|
// APIVersion is the API version used by all kinds in this package
|
|
APIVersion = "v0alpha1"
|
|
)
|
|
|
|
var (
|
|
// GroupVersion is a schema.GroupVersion consisting of the Group and Version constants for this package
|
|
GroupVersion = schema.GroupVersion{
|
|
Group: APIGroup,
|
|
Version: APIVersion,
|
|
}
|
|
)
|