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