Skip to content

Commit c024d67

Browse files
fix catalogd/Tiltfile
1 parent a8f49d9 commit c024d67

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/catalogd-tilt.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@ jobs:
2020
- uses: actions/checkout@v4
2121
with:
2222
fetch-depth: 0
23-
- name: Clone tilt-support
24-
run: |
25-
git clone https://github.com/operator-framework/tilt-support catalogd/../tilt-support
2623
- name: Install Go
2724
uses: actions/setup-go@v5
2825
with:

catalogd/Tiltfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@ if not os.path.exists('../tilt-support'):
33

44
load('../tilt-support/Tiltfile', 'deploy_repo')
55

6-
repo = {
6+
catalogd = {
77
'image': 'quay.io/operator-framework/catalogd',
88
'yaml': 'config/overlays/cert-manager',
99
'binaries': {
10-
'manager': 'catalogd-controller-manager',
10+
'catalogd': './cmd/catalogd',
1111
},
12+
'deps': ['api', 'internal', 'pkg', '../go.mod', '../go.sum', './cmd/catalogd'],
1213
'starting_debug_port': 20000,
1314
}
1415

15-
deploy_repo('catalogd', repo, '-tags containers_image_openpgp')
16+
deploy_repo('catalogd', catalogd, '-tags containers_image_openpgp')

0 commit comments

Comments
 (0)