You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: remove old-controller compat test (v0.7.0 has no operator installer)
v0.7.0 predates the monorepo merge and was only deployable via OCI Helm
chart. With Helm fully removed, the old-controller compat test cannot
deploy a v0.7.0 controller. Remove the test, its CI job, and simplify
the compat infrastructure to only support the old-client scenario.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
INTERFACE=$(route get 1.1.1.1 | grep interface | awk '{print $2}')
177
-
ifconfig | grep "$INTERFACE" -A 10 | grep "inet "| grep -Fv 127.0.0.1 | awk '{print $2}'| head -n 1
178
-
fi
179
-
}
180
-
181
165
# Create kind cluster and install grpcurl
182
166
create_cluster() {
183
167
log_info "Creating kind cluster..."
@@ -188,46 +172,6 @@ create_cluster() {
188
172
log_info "Kind cluster created"
189
173
}
190
174
191
-
deploy_old_controller() {
192
-
log_info "Deploying old controller (version: $COMPAT_CONTROLLER_TAG)..."
193
-
194
-
cd"$REPO_ROOT"
195
-
196
-
# Compute networking variables
197
-
local IP
198
-
IP=$(get_external_ip)
199
-
BASEDOMAIN="jumpstarter.${IP}.nip.io"
200
-
GRPC_ENDPOINT="grpc.${BASEDOMAIN}:8082"
201
-
GRPC_ROUTER_ENDPOINT="router.${BASEDOMAIN}:8083"
202
-
203
-
kubectl config use-context kind-jumpstarter
204
-
205
-
# Install old controller using operator installer from the release tag
206
-
local INSTALLER_URL="https://raw.githubusercontent.com/jumpstarter-dev/jumpstarter/${COMPAT_CONTROLLER_TAG}/controller/deploy/operator/dist/install.yaml"
207
-
log_info "Installing old controller via operator (version: ${COMPAT_CONTROLLER_TAG})..."
208
-
kubectl apply -f "${INSTALLER_URL}"|| log_warn "Operator installer may not be available for ${COMPAT_CONTROLLER_TAG}, skipping"
0 commit comments