2022-09-05 09:06:08 +02:00
|
|
|
/*
|
|
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-08-04 16:15:52 +02:00
|
|
|
package crds
|
|
|
|
|
|
|
|
import _ "embed"
|
|
|
|
|
|
|
|
var (
|
2022-11-09 15:57:54 +01:00
|
|
|
// OLMCRDs contains olmCRDs.yaml from [OLM Release].
|
|
|
|
//
|
|
|
|
// [OLM Release]: https://github.com/operator-framework/operator-lifecycle-manager/releases
|
|
|
|
//
|
2022-08-04 16:15:52 +02:00
|
|
|
//go:embed olmCRDs.yaml
|
|
|
|
OLMCRDs []byte
|
2022-11-09 15:57:54 +01:00
|
|
|
// OLM contains olm.yaml from [OLM Release].
|
|
|
|
//
|
|
|
|
// [OLM Release]: https://github.com/operator-framework/operator-lifecycle-manager/releases
|
|
|
|
//
|
2022-08-04 16:15:52 +02:00
|
|
|
//go:embed olmDeployment.yaml
|
|
|
|
OLM []byte
|
|
|
|
)
|