We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35e871b commit f1c2689Copy full SHA for f1c2689
install/preview/entrypoint.sh
@@ -4,11 +4,6 @@
4
5
set -e
6
7
-if [ "$1" != "logging" ]; then
8
- $0 logging 2>&1 | /prettylog
9
- exit
10
-fi
11
-
12
# check for minimum requirements
13
REQUIRED_MEM_KB=$((6 * 1024 * 1024))
14
total_mem_kb=$(awk '/MemTotal:/ {print $2}' /proc/meminfo)
@@ -136,7 +131,6 @@ yq eval-all -i '.spec.jobTemplate.spec.spec.containers[].env[] | (select(.name==
136
131
yq eval-all -i 'del(.spec.template.spec.initContainers[0])' /var/lib/rancher/k3s/server/manifests/gitpod/*_DaemonSet_ws-daemon.yaml
137
132
138
133
for f in /var/lib/rancher/k3s/server/manifests/gitpod/*.yaml; do (cat "$f"; echo) >> /var/lib/rancher/k3s/server/manifests/gitpod.yaml; done
139
-rm -rf /var/lib/rancher/k3s/server/manifests/gitpod
140
134
141
135
/bin/k3s server --disable traefik \
142
--node-label gitpod.io/workload_meta=true \
0 commit comments