Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 Fix local tilt setup #948

Merged
merged 1 commit into from
Dec 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ spec:
- args:
- --leader-elect
command:
- ./etcd-snapshot-restore
- /manager
env:
- name: POD_NAMESPACE
valueFrom:
Expand Down
52 changes: 0 additions & 52 deletions exp/etcdrestore/Dockerfile

This file was deleted.

3 changes: 1 addition & 2 deletions exp/etcdrestore/config/default/manager_image_patch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,4 @@ spec:
spec:
containers:
- image: ghcr.io/rancher/turtles-etcd-snapshot-restore:dev
name: manager
command: ["./etcd-snapshot-restore"]
name: manager
2 changes: 1 addition & 1 deletion tilt/project/Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def get_port_forwards(debug):

tilt_helper_dockerfile_header = """
# Tilt image
FROM golang:1.20.4 as tilt-helper
FROM golang:1.22.10 as tilt-helper
# Support live reloading with Tilt
RUN go install github.com/go-delve/delve/cmd/dlv@latest
RUN wget --output-document /restart.sh --quiet https://raw.githubusercontent.com/tilt-dev/rerun-process-wrapper/master/restart.sh && \
Expand Down
Loading