-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathTiltfile
More file actions
23 lines (21 loc) · 896 Bytes
/
Tiltfile
File metadata and controls
23 lines (21 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
load('.tilt-support', 'deploy_repo')
olmv1 = {
'repos': {
'catalogd': {
'image': 'quay.io/operator-framework/catalogd',
'binary': './cmd/catalogd',
'deployment': 'catalogd-controller-manager',
'deps': ['api', 'cmd/catalogd', 'internal/catalogd', 'internal/shared', 'go.mod', 'go.sum'],
'starting_debug_port': 20000,
},
'operator-controller': {
'image': 'quay.io/operator-framework/operator-controller',
'binary': './cmd/operator-controller',
'deployment': 'operator-controller-controller-manager',
'deps': ['api', 'cmd/operator-controller', 'internal/operator-controller', 'internal/shared', 'go.mod', 'go.sum'],
'starting_debug_port': 30000,
},
},
'yaml': 'helm/tilt.yaml',
}
deploy_repo(olmv1, '-tags containers_image_openpgp')