constellation/internal/crds/crds.go
Fabian Kammel 0d12e37c96
Document exported funcs,types,interfaces and enable check. (#475)
* Include EXC0014 and fix issues.
* Include EXC0012 and fix issues.
Signed-off-by: Fabian Kammel <fk@edgeless.systems>
Co-authored-by: Otto Bittner <cobittner@posteo.net>
2022-11-09 15:57:54 +01:00

25 lines
509 B
Go

/*
Copyright (c) Edgeless Systems GmbH
SPDX-License-Identifier: AGPL-3.0-only
*/
package crds
import _ "embed"
var (
// OLMCRDs contains olmCRDs.yaml from [OLM Release].
//
// [OLM Release]: https://github.com/operator-framework/operator-lifecycle-manager/releases
//
//go:embed olmCRDs.yaml
OLMCRDs []byte
// OLM contains olm.yaml from [OLM Release].
//
// [OLM Release]: https://github.com/operator-framework/operator-lifecycle-manager/releases
//
//go:embed olmDeployment.yaml
OLM []byte
)