Skip to content

Commit 857ae3c

Browse files
committed
fix: Tiltfile and docs links
1 parent 3bfe95a commit 857ae3c

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

Tiltfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ FROM golang:1.23.6 as tilt-helper
102102
# Install delve. Note this should be kept in step with the Go release minor version.
103103
RUN go install github.com/go-delve/delve/cmd/[email protected]
104104
# Support live reloading with Tilt
105-
RUN wget --output-document /restart.sh --quiet https://raw.githubusercontent.com/tilt-dev/rerun-process-wrapper/master/restart.sh && \
106-
wget --output-document /start.sh --quiet https://raw.githubusercontent.com/tilt-dev/rerun-process-wrapper/master/start.sh && \
107-
chmod +x /start.sh && chmod +x /restart.sh && chmod +x /go/bin/dlv && \
108-
touch /process.txt && chmod 0777 /process.txt `# pre-create PID file to allow even non-root users to run the image`
105+
RUN wget --output-document /restart.sh --quiet https://raw.githubusercontent.com/windmilleng/rerun-process-wrapper/master/restart.sh && \
106+
wget --output-document /start.sh --quiet https://raw.githubusercontent.com/windmilleng/rerun-process-wrapper/master/start.sh && \
107+
chmod +x /start.sh && chmod +x /restart.sh && \
108+
touch /process.txt && chmod 0666 /process.txt `# pre-create PID file to allow even non-root users to run the image`
109109
"""
110110

111111
tilt_dockerfile_header = """
@@ -114,6 +114,7 @@ WORKDIR /
114114
COPY --from=tilt-helper /process.txt .
115115
COPY --from=tilt-helper /start.sh .
116116
COPY --from=tilt-helper /restart.sh .
117+
COPY --from=tilt-helper /process.txt .
117118
COPY --from=tilt-helper /go/bin/dlv .
118119
COPY manager .
119120
"""

docs/book/src/developers/development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ It will setup the network, if you already setup the network you can skip this st
158158
```
159159

160160
By default, the Cluster API components deployed by Tilt have experimental features turned off.
161-
If you would like to enable these features, add `extra_args` as specified in [The Cluster API Book](https://cluster-api.sigs.k8s.io/developer/tilt.html#create-a-tilt-settingsjson-file).
161+
If you would like to enable these features, add `extra_args` as specified in [The Cluster API Book](https://cluster-api.sigs.k8s.io/developer/core/tilt.html?highlight=tilt#create-a-tilt-settings-file).
162162

163163
Once your kind management cluster is up and running, you can [deploy a workload cluster](#deploying-a-workload-cluster).
164164

0 commit comments

Comments
 (0)