-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy patholm-config.yaml
55 lines (53 loc) · 2.65 KB
/
olm-config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
- name: olm-operators
sync: true
repo_link: "https://github.com/operator-framework/api"
branch: v0.26.0
remote_api_directory: pkg/operators
local_api_directory: schemes/olm/operators
excludes:
- "*_test.go"
replace_imports:
- old: '"github.com/operator-framework/api/pkg/operators/v1"'
new: '"github.com/openshift-kni/eco-goinfra/pkg/schemes/olm/operators/v1"'
- old: '"github.com/operator-framework/api/pkg/operators/v1alpha1"'
new: '"github.com/openshift-kni/eco-goinfra/pkg/schemes/olm/operators/v1alpha1"'
- old: '"github.com/operator-framework/api/pkg/operators/v1alpha2"'
new: '"github.com/openshift-kni/eco-goinfra/pkg/schemes/olm/operators/v1alpha2"'
- old: '"github.com/operator-framework/api/pkg/operators/install"'
new: '"github.com/openshift-kni/eco-goinfra/pkg/schemes/olm/operators/install"'
- old: '"github.com/operator-framework/api/pkg/lib/version"'
new: '"github.com/openshift-kni/eco-goinfra/pkg/schemes/olm/version"'
- old: '"github.com/operator-framework/api/pkg/operators"'
new: '"github.com/openshift-kni/eco-goinfra/pkg/schemes/olm/operators"'
- name: olm-version
sync: true
repo_link: "https://github.com/operator-framework/api"
branch: v0.26.0
remote_api_directory: pkg/lib/version
local_api_directory: schemes/olm/version
excludes:
- "*_test.go"
- name: olm-package-server-operator
sync: true
repo_link: "https://github.com/operator-framework/operator-lifecycle-manager"
branch: v0.26.0
remote_api_directory: pkg/package-server/apis/operators
local_api_directory: schemes/olm/package-server/operators
excludes:
- "*_test.go"
- "packagemanifest.go"
replace_imports:
- old: '"github.com/operator-framework/api/pkg/operators/v1alpha1"'
new: '"github.com/openshift-kni/eco-goinfra/pkg/schemes/olm/operators/v1alpha1"'
- old: '"github.com/operator-framework/operator-registry/pkg/registry"'
new: '"github.com/openshift-kni/eco-goinfra/pkg/schemes/olm/registry"'
- old: '"github.com/operator-framework/api/pkg/lib/version"'
new: '"github.com/openshift-kni/eco-goinfra/pkg/schemes/olm/version"'
- old: '"github.com/operator-framework/api/pkg/operators"'
new: '"github.com/openshift-kni/eco-goinfra/pkg/schemes/olm/operators"'
- old: '"github.com/operator-framework/operator-lifecycle-manager/pkg/package-server/apis/operators"'
new: '"github.com/openshift-kni/eco-goinfra/pkg/schemes/olm/package-server/operators"'
- old: '"github.com/operator-framework/operator-lifecycle-manager/pkg/package-server/apis/operators/v1"'
new: '"github.com/openshift-kni/eco-goinfra/pkg/schemes/olm/package-server/operators/v1"'
...