mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-18 12:24:32 -05:00
0d12e37c96
* 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>
25 lines
509 B
Go
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
|
|
)
|