forked from kubevirt/cluster-network-addons-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support KubevirtIpamController plugin (kubevirt#1808)
* Support KubevirtIpamController plugin Signed-off-by: Or Shoval <oshoval@redhat.com> * cluster: Add memory Without it, we don't have memory to create some virtual machines (saw it for example on KSD lane). Signed-off-by: Or Shoval <oshoval@redhat.com> * components: Refactor script to allow robust usage Since we introduce a non kubevirtci cluster, refactor the script to allow code reuse while using both types of clusters. All current lanes are agnostic for the change. Signed-off-by: Or Shoval <oshoval@redhat.com> * git actions: Add kubevirt ipam controller e2e lane Signed-off-by: Or Shoval <oshoval@redhat.com> --------- Signed-off-by: Or Shoval <oshoval@redhat.com>
- Loading branch information
Showing
19 changed files
with
918 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Kubevirt IPAM controller Tests | ||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
e2e: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version-file: 'go.mod' | ||
|
||
- name: Run e2e tests | ||
env: | ||
KIND_ALLOW_SYSTEM_WRITES: true | ||
run: automation/check-patch.e2e-kubevirt-ipam-controller-functests.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
automation/check-patch.e2e-kubevirt-ipam-controller-functests.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -xeuE | ||
|
||
# automation/check-patch.e2e-kubevirt-ipam-controller-functests.sh | ||
|
||
GITHUB_ACTIONS=${GITHUB_ACTIONS:-false} | ||
|
||
teardown() { | ||
cd ${TMP_COMPONENT_PATH} | ||
make cluster-down || true | ||
rm -rf "${TMP_COMPONENT_PATH}" | ||
} | ||
|
||
main() { | ||
if [ "$GITHUB_ACTIONS" == "true" ]; then | ||
ARCH="amd64" | ||
OS_TYPE="linux" | ||
kubevirt_version="$(curl -L https://storage.googleapis.com/kubevirt-prow/release/kubevirt/kubevirt/stable.txt)" | ||
kubevirt_release_url="https://github.com/kubevirt/kubevirt/releases/download/${kubevirt_version}" | ||
cli_name="virtctl-${kubevirt_version}-${OS_TYPE}-${ARCH}" | ||
curl -LO "${kubevirt_release_url}/${cli_name}" | ||
mv ${cli_name} virtctl | ||
chmod +x virtctl | ||
mv virtctl /usr/local/bin | ||
fi | ||
|
||
# Setup CNAO and artifacts temp directory | ||
source automation/check-patch.setup.sh | ||
cd ${TMP_PROJECT_PATH} | ||
|
||
export USE_KUBEVIRTCI=false | ||
COMPONENT="kubevirt-ipam-controller" source automation/components-functests.setup.sh | ||
|
||
cd ${TMP_COMPONENT_PATH} | ||
export KIND_ARGS="-ic -i6 -mne" | ||
make cluster-up | ||
export KUBECONFIG=${TMP_COMPONENT_PATH}/.output/kubeconfig | ||
|
||
trap teardown EXIT | ||
|
||
cd ${TMP_PROJECT_PATH} | ||
export KUBEVIRT_PROVIDER=external | ||
export DEV_IMAGE_REGISTRY=localhost:5000 | ||
./cluster/cert-manager-install.sh | ||
deploy_cnao | ||
deploy_cnao_cr | ||
./hack/deploy-kubevirt.sh | ||
|
||
cd ${TMP_COMPONENT_PATH} | ||
echo "Run kubevirt-ipam-controller functional tests" | ||
make test-e2e | ||
} | ||
|
||
[[ "${BASH_SOURCE[0]}" == "$0" ]] && main "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/bin/bash | ||
# | ||
# Copyright 2024 Red Hat, Inc. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
set -ex | ||
|
||
export DEPLOY_CERT_MANAGER=${DEPLOY_CERT_MANAGER:-true} | ||
|
||
if [[ $DEPLOY_CERT_MANAGER == true ]]; then | ||
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" | ||
./cluster/kubectl.sh apply -f "$manifest" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
{{ if not .IsOpenshift }} | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.13.0 | ||
name: ipamclaims.k8s.cni.cncf.io | ||
spec: | ||
group: k8s.cni.cncf.io | ||
names: | ||
kind: IPAMClaim | ||
listKind: IPAMClaimList | ||
plural: ipamclaims | ||
singular: ipamclaim | ||
scope: Namespaced | ||
versions: | ||
- name: v1alpha1 | ||
schema: | ||
openAPIV3Schema: | ||
description: IPAMClaim is the Schema for the IPAMClaim API | ||
properties: | ||
apiVersion: | ||
description: 'APIVersion defines the versioned schema of this representation | ||
of an object. Servers should convert recognized schemas to the latest | ||
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' | ||
type: string | ||
kind: | ||
description: 'Kind is a string value representing the REST resource this | ||
object represents. Servers may infer this from the endpoint the client | ||
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
properties: | ||
interface: | ||
description: The pod interface name for which this allocation was | ||
created | ||
type: string | ||
network: | ||
description: The network name for which this persistent allocation | ||
was created | ||
type: string | ||
required: | ||
- interface | ||
- network | ||
type: object | ||
status: | ||
properties: | ||
ips: | ||
description: The list of IP addresses (v4, v6) that were allocated | ||
for the pod interface | ||
items: | ||
type: string | ||
type: array | ||
required: | ||
- ips | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} | ||
{{ end }} |
Oops, something went wrong.