first, use:
teuthology-lock --brief
to see if you already have a machine locked. if not, use:
teuthology-lock --lock-many 1 --machine-type smithi
to lock a machine.
#!/usr/bin/env python3 | |
""" | |
License: MIT License | |
Copyright (c) 2023 Miel Donkers | |
Very simple HTTP server in python for logging requests | |
Usage:: | |
./server.py [<port>] | |
""" | |
from http.server import BaseHTTPRequestHandler, HTTPServer |
The "Gotta Catch 'Em All" project focused on leveraging the Coverity static analysis tool to enhance the code quality of the Ceph RGW (Rados Gateway) module. We addressed a range of issues and categorized them based on severity and relevance. We aim to use this data to evaluate the potential of Coverity for the Ceph organization.
A total of 87 issues were fixed as part of the GSoC, and they were categorized into four main categories based on severity:
This is list TODOs for the bucket notification PR in Rook. Based on these comments:
#!/bin/bash | |
if [ "$#" -eq 2 ]; then | |
name=$1 | |
id=$2 | |
cluster="ceph" | |
endloop=0 | |
elif [ "$#" -eq 3 ]; then | |
name=$1 | |
id=$2 |
Fedora28-32
Current status:
df -h
Find large files in the system:
sudo find / -type f -size +1000M -exec ls -lh {} \;
Run the following in the terminal:
Install the gcc-7 packages:
sudo apt-get install -y software-properties-common
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt update
sudo apt install g++-7 -y
Set it up so the symbolic links gcc
, g++
point to the newer version:
#!/usr/bin/env python3 | |
""" | |
License: MIT License | |
Copyright (c) 2023 Miel Donkers | |
Very simple HTTP server in python for logging requests | |
Usage:: | |
./server.py [<port>] | |
""" | |
from http.server import BaseHTTPRequestHandler, HTTPServer |