Skip to content

Commit e870cc4

Browse files
authored
Merge pull request #10 from boettiger-lab/fix/deployment-clone-url
fix: deployment init container clone URL
2 parents b655236 + 7e099c7 commit e870cc4

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

example-k8s/k8s/deployment.yaml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,11 @@ spec:
2626
- sh
2727
- -c
2828
- |
29-
# Clone this app repo (tiny — just HTML + config files)
30-
# Replace URL with your own app repo:
31-
git clone --depth 1 https://github.com/boettiger-lab/padus-app.git /tmp/repo
32-
cp /tmp/repo/index.html /usr/share/nginx/html/
33-
cp /tmp/repo/layers-input.json /usr/share/nginx/html/
34-
cp /tmp/repo/system-prompt.md /usr/share/nginx/html/
29+
# Clone the geo-agent repo and serve the example-k8s app files
30+
git clone --depth 1 https://github.com/boettiger-lab/geo-agent.git /tmp/repo
31+
cp /tmp/repo/example-k8s/index.html /usr/share/nginx/html/
32+
cp /tmp/repo/example-k8s/layers-input.json /usr/share/nginx/html/
33+
cp /tmp/repo/example-k8s/system-prompt.md /usr/share/nginx/html/
3534
volumeMounts:
3635
- name: website-content
3736
mountPath: /usr/share/nginx/html

0 commit comments

Comments
 (0)