-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Mohammed Boukhalfa <[email protected]>
- Loading branch information
1 parent
a6127bf
commit 4e42ef5
Showing
29 changed files
with
2,450 additions
and
0 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,19 @@ | ||
__pycache__/ | ||
# Distribution / packaging | ||
.Python | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
eggs/ | ||
.eggs/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
wheels/ | ||
share/python-wheels/ | ||
*.egg-info/ | ||
.installed.cfg | ||
*.egg | ||
MANIFEST |
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,9 @@ | ||
ARG BASE_IMAGE=python:3.9-slim | ||
FROM $BASE_IMAGE | ||
ENV PBR_VERSION=6.0.0 | ||
COPY . /root/fake-ipa/ | ||
WORKDIR /root/fake-ipa/ | ||
ENV CONFIG ${CONFIG:-/root/fake-ipa/conf.py} | ||
RUN python3 -m pip install -r requirements.txt | ||
RUN python3 setup.py install | ||
CMD fake-ipa --config $CONFIG |
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,48 @@ | ||
# Fake ironic python agent | ||
|
||
Fake ipa is a tool to help test ironic communication with IPA. | ||
|
||
Fake ipa simulate the IPA by: | ||
|
||
- Running an API server with the needed real IPA endpoint. | ||
- Send back fake inspection data when requested. | ||
- lookup the node and save tokens. | ||
- Heartbeating to ironic API with several threads looping over | ||
a queue of fake agents. | ||
- Faking the sync/async commands needed by ironic to inspect, | ||
clean and provision a node. | ||
|
||
## Run Fake ipa with ironic | ||
|
||
### Requirements | ||
|
||
Machine: `4c / 16gb / 100gb` | ||
OS: `CentOS9-20220330` | ||
|
||
### Test fake ipa | ||
|
||
1. clone the env scripts `cd` inside `fake-ipa/Run-env` folder | ||
2. check configs in `config.py` | ||
3. run init `./Init-environment.sh` | ||
4. to just rebuild fake-ipa from the local repo run `./rebuild-fipa.sh` | ||
|
||
### Use ironic with fake-ipa | ||
|
||
At this step there will be an ironic environment using fake-ipa, | ||
by default there will be two nodes created on ironic you can list them with: | ||
`baremetal node list` | ||
|
||
To manage the a node using the ironicclient: | ||
`baremetal node manage <node-name>` | ||
|
||
To inspect use: `baremetal node inspect <node-name>` | ||
then you can provide and deploy image on the node with: | ||
|
||
```bash | ||
baremetal node provide <node-name> | ||
baremetal node deploy <node-name> | ||
``` | ||
|
||
### Clean | ||
|
||
To clean the env `./clean.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,99 @@ | ||
set -e | ||
#install kvm for minikube | ||
dnf -y install qemu-kvm libvirt virt-install net-tools podman firewalld | ||
systemctl enable --now libvirtd | ||
systemctl start firewalld | ||
systemctl enable firewalld | ||
# create provisioning network | ||
cat <<EOF >provisioning.xml | ||
<network | ||
xmlns:dnsmasq='http://libvirt.org/schemas/network/dnsmasq/1.0'> | ||
<dnsmasq:options> | ||
<!-- Risk reduction for CVE-2020-25684, CVE-2020-25685, and CVE-2020-25686. See: https://access.redhat.com/security/vulnerabilities/RHSB-2021-001 --> | ||
<dnsmasq:option value="cache-size=0"/> | ||
</dnsmasq:options> | ||
<name>provisioning</name> | ||
<bridge name='provisioning'/> | ||
<forward mode='bridge'></forward> | ||
</network> | ||
EOF | ||
|
||
cat <<EOF >baremetal.xml | ||
<network xmlns:dnsmasq='http://libvirt.org/schemas/network/dnsmasq/1.0'> | ||
<name>baremetal</name> | ||
<forward mode='nat'> | ||
<nat> | ||
<port start='1024' end='65535'/> | ||
</nat> | ||
</forward> | ||
<bridge name='baremetal' stp='on' delay='0'/> | ||
<domain name='ostest.test.metalkube.org' localOnly='yes'/> | ||
<dns> | ||
<forwarder domain='apps.ostest.test.metalkube.org' addr='127.0.0.1'/> | ||
</dns> | ||
<ip address='192.168.111.1' netmask='255.255.255.0'> | ||
<dhcp> | ||
<range start='192.168.111.20' end='192.168.111.60'/> | ||
<host mac='00:5c:52:31:3b:9c' name='node-0' ip='192.168.111.20'> | ||
<lease expiry='60' unit='minutes'/> | ||
</host> | ||
<host mac='00:5c:52:31:3b:ad' name='node-1' ip='192.168.111.21'> | ||
<lease expiry='60' unit='minutes'/> | ||
</host> | ||
</dhcp> | ||
</ip> | ||
<dnsmasq:options> | ||
<dnsmasq:option value='cache-size=0'/> | ||
</dnsmasq:options> | ||
</network> | ||
EOF | ||
# define networks | ||
virsh net-define baremetal.xml | ||
virsh net-start baremetal | ||
virsh net-autostart baremetal | ||
|
||
virsh net-define provisioning.xml | ||
virsh net-start provisioning | ||
virsh net-autostart provisioning | ||
tee -a /etc/NetworkManager/system-connections/provisioning.nmconnection <<EOF | ||
[connection] | ||
id=provisioning | ||
type=bridge | ||
interface-name=provisioning | ||
[bridge] | ||
stp=false | ||
[ipv4] | ||
address1=172.22.0.1/24 | ||
method=manual | ||
[ipv6] | ||
addr-gen-mode=eui64 | ||
method=disabled | ||
EOF | ||
|
||
chmod 600 /etc/NetworkManager/system-connections/provisioning.nmconnection | ||
nmcli con load /etc/NetworkManager/system-connections/provisioning.nmconnection | ||
nmcli con up provisioning | ||
|
||
tee /etc/NetworkManager/system-connections/baremetal.nmconnection <<EOF | ||
[connection] | ||
id=baremetal | ||
type=bridge | ||
interface-name=baremetal | ||
autoconnect=true | ||
[bridge] | ||
stp=false | ||
[ipv6] | ||
addr-gen-mode=stable-privacy | ||
method=ignore | ||
EOF | ||
|
||
chmod 600 /etc/NetworkManager/system-connections/baremetal.nmconnection | ||
nmcli con load /etc/NetworkManager/system-connections/baremetal.nmconnection | ||
nmcli con up baremetal | ||
|
||
# install minikube | ||
curl -LO https://storage.googleapis.com/minikube/releases/v1.25.2/minikube-linux-amd64 | ||
install minikube-linux-amd64 /usr/local/bin/minikube | ||
# Install kubectl | ||
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" | ||
install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl |
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,14 @@ | ||
set -e | ||
minikube config set driver kvm2 | ||
minikube config set memory 4096 | ||
sudo usermod --append --groups libvirt "$(whoami)" | ||
while /bin/true; do | ||
minikube_error=0 | ||
minikube start --insecure-registry 172.22.0.1:5000 || minikube_error=1 | ||
if [[ $minikube_error -eq 0 ]]; then | ||
break | ||
fi | ||
sudo su -l -c 'minikube delete --all --purge' "${USER}" | ||
sudo ip link delete virbr0 | ||
done | ||
minikube stop |
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,72 @@ | ||
# Set variables | ||
SCRIPT_DIR="$(dirname "$(readlink -f "$0")")" | ||
REGISTRY_NAME="registry" | ||
REGISTRY_PORT="5000" | ||
IMAGE_NAMES=( | ||
# "quay.io/metal3-io/sushy-tools" | ||
"quay.io/metal3-io/ironic-client" | ||
) | ||
|
||
# Attach provisioning and baremetal network interfaces to minikube domain | ||
virsh attach-interface --domain minikube --model virtio --source provisioning --type network --config | ||
virsh attach-interface --domain minikube --model virtio --source baremetal --type network --config | ||
podman pod create -n infra-pod || true | ||
podman pod create -n ironic-pod || true | ||
# Start podman registry if it's not already running | ||
if ! podman ps | grep -q "$REGISTRY_NAME"; then | ||
podman run -d -p "$REGISTRY_PORT":"$REGISTRY_PORT" --name "$REGISTRY_NAME" docker.io/library/registry:2.7.1 | ||
fi | ||
|
||
# Pull images, tag to local registry, and push to registry | ||
for NAME in "${IMAGE_NAMES[@]}"; do | ||
# Pull and tag the image | ||
podman pull "$NAME" | ||
podman tag "$NAME" 127.0.0.1:"$REGISTRY_PORT"/localimages/"${NAME##*/}" | ||
# Push the image to the local registry | ||
podman push --tls-verify=false 127.0.0.1:5000/localimages/"${NAME##*/}" | ||
done | ||
|
||
./build-sushy-tools-and-fake-ipa-images.sh | ||
# Set configuration options | ||
cp ../conf.py "$SCRIPT_DIR/tmp/sushy-tools/conf.py" | ||
|
||
# Create an htpasswd file | ||
cat <<'EOF' >"$SCRIPT_DIR/tmp/sushy-tools/htpasswd" | ||
admin:$2b$12$/dVOBNatORwKpF.ss99KB.vESjfyONOxyH.UgRwNyZi1Xs/W2pGVS | ||
EOF | ||
# Create directories | ||
DIRECTORIES=( | ||
"/opt/metal3-dev-env/ironic/virtualbmc" | ||
"/opt/metal3-dev-env/ironic/virtualbmc/sushy-tools" | ||
"/opt/metal3-dev-env/ironic/html/images" | ||
"tmp/cert" | ||
) | ||
for DIR in "${DIRECTORIES[@]}"; do | ||
mkdir -p "$DIR" | ||
chmod -R 755 "$DIR" | ||
done | ||
|
||
# Run httpd container | ||
podman run -d --net host --name httpd-infra \ | ||
--pod infra-pod \ | ||
-v /opt/metal3-dev-env/ironic:/shared \ | ||
-e PROVISIONING_INTERFACE=provisioning \ | ||
-e LISTEN_ALL_INTERFACES=false \ | ||
--entrypoint /bin/runhttpd \ | ||
quay.io/metal3-io/ironic:latest | ||
|
||
# Generate ssh keys to use for virtual power and add them to authorized_keys | ||
sudo ssh-keygen -f /root/.ssh/id_rsa_virt_power -P "" -q -y | ||
sudo cat /root/.ssh/id_rsa_virt_power.pub | sudo tee -a /root/.ssh/authorized_keys | ||
|
||
# Create and start a container for sushy-tools | ||
podman run -d --net host --name sushy-tools --pod infra-pod \ | ||
-v "$SCRIPT_DIR/tmp/sushy-tools:/root/sushy" \ | ||
-v /root/.ssh:/root/ssh \ | ||
127.0.0.1:5000/localimages/sushy-tools | ||
|
||
# Create and start a container for fake-ipa | ||
podman run -d --net host --name fake-ipa --pod infra-pod \ | ||
-v "$SCRIPT_DIR/tmp/cert:/root/cert" \ | ||
-v /root/.ssh:/root/ssh \ | ||
127.0.0.1:5000/localimages/fake-ipa |
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,16 @@ | ||
set -e | ||
|
||
# Start Minikube with insecure registry flag | ||
minikube start --insecure-registry 172.22.0.1:5000 | ||
|
||
# SSH into the Minikube VM and execute the following commands | ||
sudo su -l -c "minikube ssh sudo brctl addbr ironicendpoint" "${USER}" | ||
sudo su -l -c "minikube ssh sudo ip link set ironicendpoint up" "${USER}" | ||
sudo su -l -c "minikube ssh sudo brctl addif ironicendpoint eth2" "${USER}" | ||
sudo su -l -c "minikube ssh sudo ip addr add 172.22.0.2/24 dev ironicendpoint" "${USER}" | ||
|
||
# Firewall rules | ||
for i in 8000 80 9999 6385 5050 6180 53 5000; do sudo firewall-cmd --zone=public --add-port=${i}/tcp; done | ||
for i in 8000 80 9999 6385 5050 6180 53 5000; do sudo firewall-cmd --zone=libvirt --add-port=${i}/tcp; done | ||
for i in 69 547 546 68 67 5353 6230 6231 6232 6233 6234 6235; do sudo firewall-cmd --zone=libvirt --add-port=${i}/udp; done | ||
sudo firewall-cmd --zone=libvirt --add-port=8000/tcp |
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,78 @@ | ||
set -e | ||
# Apply ironic | ||
# Clone bmo | ||
if [ ! -d "baremetal-operator/" ] ; then | ||
git clone "https://github.com/metal3-io/baremetal-operator.git" | ||
fi | ||
|
||
cd baremetal-operator/ | ||
|
||
# Ironic config file | ||
cat <<'EOF' >ironic-deployment/overlays/e2e/ironic_bmo_configmap.env | ||
HTTP_PORT=6180 | ||
PROVISIONING_IP=172.22.0.2 | ||
DEPLOY_KERNEL_URL=http://172.22.0.2:6180/images/ironic-python-agent.kernel | ||
DEPLOY_RAMDISK_URL=http://172.22.0.2:6180/images/ironic-python-agent.initramfs | ||
IRONIC_ENDPOINT=https://172.22.0.2:6385/v1/ | ||
CACHEURL=http://172.22.0.2/images | ||
IRONIC_FAST_TRACK=true | ||
IRONIC_KERNEL_PARAMS=console=ttyS0 | ||
IRONIC_INSPECTOR_VLAN_INTERFACES=all | ||
PROVISIONING_CIDR=172.22.0.1/24 | ||
PROVISIONING_INTERFACE=ironicendpoint | ||
DHCP_RANGE=172.22.0.10,172.22.0.100 | ||
IRONIC_INSPECTOR_ENDPOINT=http://172.22.0.2:5050/v1/ | ||
RESTART_CONTAINER_CERTIFICATE_UPDATED="false" | ||
IRONIC_RAMDISK_SSH_KEY=ssh-rsa | ||
IRONIC_USE_MARIADB=false | ||
USE_IRONIC_INSPECTOR=false | ||
OS_AGENT__REQUIRE_TLS=false | ||
EOF | ||
|
||
# Apply default ironic manifest without tls or authentication for simplicity | ||
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.15.1/cert-manager.yaml | ||
kubectl -n cert-manager wait --for=condition=available deployment --all --timeout=300s | ||
|
||
echo "IRONIC_HTPASSWD=$(htpasswd -n -b -B admin password)" > ironic-deployment/overlays/e2e/ironic-htpasswd | ||
echo "IRONIC_HTPASSWD=$(htpasswd -n -b -B admin password)" > ironic-deployment/overlays/e2e/ironic-inspector-htpasswd | ||
|
||
cat <<'EOF' >ironic-deployment/overlays/e2e/ironic-auth-config | ||
[ironic] | ||
auth_type=http_basic | ||
username=admin | ||
password=password | ||
EOF | ||
|
||
kubectl apply -k config/namespace/ | ||
kubectl apply -k ironic-deployment/overlays/e2e | ||
cd .. | ||
|
||
kubectl -n baremetal-operator-system wait --for=condition=available deployment/ironic --timeout=300s | ||
|
||
sudo pip install python-ironicclient | ||
|
||
|
||
kubectl -n legacy get secret -n baremetal-operator-system ironic-cert -o json -o=jsonpath="{.data.ca\.crt}" | base64 -d > "${HOME}/.config/openstack/ironic-ca.crt" | ||
|
||
sudo "${HOME}/.config/openstack/ironic-ca.crt" tmp/cert/ | ||
|
||
# Create ironic node | ||
sudo touch /opt/metal3-dev-env/ironic/html/images/image.qcow2 | ||
|
||
baremetal node create --driver redfish --driver-info \ | ||
redfish_address=http://192.168.111.1:8000 --driver-info \ | ||
redfish_system_id=/redfish/v1/Systems/27946b59-9e44-4fa7-8e91-f3527a1ef094 --driver-info \ | ||
redfish_username=admin --driver-info redfish_password=password \ | ||
--name default-node-1 | ||
|
||
baremetal node set default-node-1 --driver-info deploy_kernel="http://172.22.0.2:6180/images/ironic-python-agent.kernel" --driver-info deploy_ramdisk="http://172.22.0.2:6180/images/ironic-python-agent.initramfs" | ||
baremetal node set default-node-1 --instance-info image_source=http://172.22.0.1/images/image.qcow2 --instance-info image_checksum=http://172.22.0.1/images/image.qcow2 | ||
|
||
baremetal node create --driver redfish --driver-info \ | ||
redfish_address=http://192.168.111.1:8000 --driver-info \ | ||
redfish_system_id=/redfish/v1/Systems/27946b59-9e44-4fa7-8e91-f3527a1ef095 --driver-info \ | ||
redfish_username=admin --driver-info redfish_password=password \ | ||
--name default-node-2 | ||
|
||
baremetal node set default-node-2 --driver-info deploy_kernel="http://172.22.0.2:6180/images/ironic-python-agent.kernel" --driver-info deploy_ramdisk="http://172.22.0.2:6180/images/ironic-python-agent.initramfs" | ||
baremetal node set default-node-2 --instance-info image_source=http://172.22.0.1/images/image.qcow2 --instance-info image_checksum=http://172.22.0.1/images/image.qcow2 |
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,6 @@ | ||
set -e | ||
sudo ./01-vm-setup.sh | ||
./02-configure-minikube.sh | ||
sudo ./03-images-and-run-local-services.sh | ||
./04-start-minikube.sh | ||
./05-apply-manifests.sh |
Oops, something went wrong.