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

[release-1.0]: Adapt to ipam-controller renaming #4716

Merged
merged 1 commit into from
Sep 11, 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
8 changes: 4 additions & 4 deletions contrib/kind-common
Original file line number Diff line number Diff line change
Expand Up @@ -373,14 +373,14 @@ install_kubevirt() {
chmod +x ./bin/virtctl
}

install_kubevirt_ipam_claims() {
install_kubevirt_ipam_controller() {
local cert_manager_version="v1.14.4"
echo "Installing cert-manager ..."
manifest="https://github.com/cert-manager/cert-manager/releases/download/${cert_manager_version}/cert-manager.yaml"
run_kubectl apply -f "$manifest"

echo "Installing KubeVirt IPAM manager ..."
manifest="https://raw.githubusercontent.com/maiqueb/kubevirt-ipam-claims/main/dist/install.yaml"
echo "Installing KubeVirt IPAM controller manager ..."
manifest="https://raw.githubusercontent.com/kubevirt/ipam-extensions/main/dist/install.yaml"
run_kubectl apply -f "$manifest"
kubectl wait -n kubevirt-ipam-claims-system deployment kubevirt-ipam-claims-controller-manager --for condition=Available --timeout 2m
kubectl wait -n kubevirt-ipam-controller-system deployment kubevirt-ipam-controller-manager --for condition=Available --timeout 2m
}
2 changes: 1 addition & 1 deletion contrib/kind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1193,5 +1193,5 @@ if [ "$KIND_INSTALL_PLUGINS" == true ]; then
fi
if [ "$KIND_INSTALL_KUBEVIRT" == true ]; then
install_kubevirt
install_kubevirt_ipam_claims
install_kubevirt_ipam_controller
fi
Loading