Skip to main content
Thibault DESAULES

Thibault DESAULES

Lead DevOps Engineer

more details about me

With over a decade of experience in the tech industry, I have evolved through development and systems engineering to become a Lead DevOps Engineer with a focus on Site Reliability. Currently at Devoteam, I specialize in building resilient infrastructures for large-scale environments.

I am a Maker in every sense of the word. My passion for analog photography and high-fidelity audio reflects my love for technical precision and the beauty of manual processes. Whether I’m designing a GitOps workflow, developing a roll of film, or 3D printing a custom part for a home automation project, I apply the same diy philosophy : understand the core mechanics to build something better.

Collaboration is my engine. I thrive on sharing knowledge, fostering innovation, and tackling infrastructure challenges alongside development teams to ensure seamless growth.

When the screens are off, you’ll find me exploring the world through a vintage lens, diving into a Science Fiction novel, or practicing Yoga. I am a firm believer that great engineering is fueled by a mix of deep curiosity, cultural openness, and the simple joy of sharing a great meal with friends.

struct Engineer {
    mission: String,
}

impl Engineer {
    fn announce_mission(&self) {
        println!("My mission ? {}", self.mission);
    }
}

fn main() {
    let me = Engineer {
        mission: String::from("Bridging the gap between complex technology and elegant, automated solutions."),
    };
    me.announce_mission();
}