-
Notifications
You must be signed in to change notification settings - Fork 51
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
Support KubevirtIpamController plugin #1808
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
btw this is tricky
it takes the one from CNAO's go.mod
and use it as the go version for OVN-K as well
for now it works, it might break in the future and then we will take care about it