-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathTiltfile
24 lines (21 loc) · 913 Bytes
/
Tiltfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
load('.tilt-support', 'deploy_repo')
operator_controller = {
'image': 'quay.io/operator-framework/operator-controller',
'yaml': 'config/overlays/cert-manager',
'binaries': {
'./cmd/operator-controller': 'operator-controller-controller-manager',
},
'deps': ['api', 'cmd/operator-controller', 'internal', 'pkg', 'go.mod', 'go.sum'],
'starting_debug_port': 30000,
}
deploy_repo('operator-controller', operator_controller, '-tags containers_image_openpgp')
catalogd = {
'image': 'quay.io/operator-framework/catalogd',
'yaml': 'catalogd/config/overlays/cert-manager',
'binaries': {
'./catalogd/cmd/catalogd': 'catalogd-controller-manager',
},
'deps': ['catalogd/api', 'catalogd/cmd/catalogd', 'catalogd/internal', 'catalogd/pkg', 'go.mod', 'go.sum'],
'starting_debug_port': 20000,
}
deploy_repo('catalogd', catalogd, '-tags containers_image_openpgp')