OVHcloud
OVHcloud
Impact 2035: Shape the Future with OVHcloud
Impact 2035: Shape the Future with OVHcloud
Why this Challenge?

This challenge celebrates innovation across diverse fields and focuses on startups leveraging technology to shape the next decade and build impactful tech solutions for the future.

At the same time, data sovereignty has moved from a “nice to have” to a strategic business imperative. The ecosystem is accelerating toward more resilient and sovereign infrastructure to reduce risk, build customer trust, and optimize price-performance.

Our Startup Challenge
Impact 2035: Shape the Future with OVHcloud

The context:
OVHcloud is extending the Impact 2035 challenge for another year and is seeking groundbreaking tech startups that prioritize digital sovereignty and sustainability, while delivering transformative, measurable, and scalable solutions to address global challenges like healthcare, climate resilience, ethical AI, and equity and inclusion.

We aim to identify and accelerate startups that will shape a better future for humanity and the planet over the next decade.


What we are looking for:
Key Themes
• Sustainable Planet & Green Tech (green IT, energy-efficient infrastructure, smart cities, circular economy)
• Health, Well-being & Inclusive Society (healthcare, longevity, access to services)
• Future of Learning & Work (lifelong learning, reskilling, future jobs)
• Responsible & Sovereign Tech (open source, data sovereignty, ethical AI, trusted infrastructure)

Expected solutions:
• Startups should have at least an MVP or prototype
• A clear roadmap toward measurable impact by 2035
• At least some early validation, such as traction or partnerships

Impact 2035: Shape the Future with OVHcloud

The context:
OVHcloud is extending the Impact 2035 challenge for another year and is seeking groundbreaking tech startups that prioritize digital sovereignty and sustainability, while delivering transformative, measurable, and scalable solutions to address global challenges like healthcare, climate resilience, ethical AI, and equity and inclusion.

We aim to identify and accelerate startups that will shape a better future for humanity and the planet over the next decade.


What we are looking for:
Key Themes
• Sustainable Planet & Green Tech (green IT, energy-efficient infrastructure, smart cities, circular economy)
• Health, Well-being & Inclusive Society (healthcare, longevity, access to services)
• Future of Learning & Work (lifelong learning, reskilling, future jobs)
• Responsible & Sovereign Tech (open source, data sovereignty, ethical AI, trusted infrastructure)

Expected solutions:
• Startups should have at least an MVP or prototype
• A clear roadmap toward measurable impact by 2035
• At least some early validation, such as traction or partnerships

Selection Criteria
Impact

How transformative is the solution for society and the planet?

Data Sovereignty & Ethics

Does the solution prioritize data sovereignty, trust, and responsible technology practices?

Feasibility & Scalability

Is the solution technically viable and capable of scaling sustainably to reach millions of users?

Startup Maturity

Is the company privately held, less than 10 years old, and progressing toward product-market fit?

Team Capability

Does the team have the expertise to build and scale with advanced cloud tech?

Rewards
Play an active role in our six business sectors

Your solution, product or service demonstrates that you can play an active role in LVMH's ecosystem and deliver on a large scale. Whether it be the creation process, the omnichannel customer journey, or operation and manufacturing, you support the Group's legacy of excellence and innovation in all areas of its 6 business sectors.

  • Fashion & Leather Goods

  • Wines & Spirits

  • Perfumes & Cosmetics

  • Watches & Jewelry

  • Other Activities

  • Selective Retailing

Timeline

44 Days 12 Hours

left to apply

left to apply

FAQ

Who can apply?

Can I apply for more than one Startup Challenge/Award?

What is the difference between a Startup Challenge and an Award?

Is applying for an Award or Startup Challenge free?

******* JAVASCRIPT *******/ /** * Allowed parameters for the tracking code */ const allowedParameters: string[] = [ 'ca', 'utm', 'utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', // 'cat', // Blog // 'ag_t', 't', // Warning this parameters is used like tracking for Challenges partners "Agorize", 'wid' // Paramters for revolugo urls ]; /** * Rreturn the object with the allowed parameters * @param ownParams URLSearchParams * @returns Object */ const ownCtmParameters = (ownParams: URLSearchParams) => { let obj = {}; for (const [key, value] of ownParams.entries()) { //console.log("ownCtmParameters key: ", key); if (allowedParameters.includes(key)) { // console.log("PAss key: ", key); obj[key] = value; } else { // console.log("No PAss key: ", key); } } return obj; }; /** * Insert the tracking code in the anchor elements * @returns void */ const insertTrackingCode = () => { // Get tracking parameters from URL search params const searchParams = new URLSearchParams(window.location.search); // Convert search params to object const filteredParams = ownCtmParameters(searchParams); // If no parameters, return early if (Object.keys(filteredParams).length === 0) { return; } const paramsString = new URLSearchParams(filteredParams).toString(); const baseUrl = window.location.origin; // Get all anchor elements from the current document const anchors = document.querySelectorAll('a'); for (const anchor of anchors) { const href = anchor.getAttribute('href'); const target = anchor.getAttribute('target'); if (!href || target === '_blank') { continue; } // Normalize href const normalizedHref = href.startsWith('https') ? href : href.replace(/^\.\//, '/'); try { const url = normalizedHref.startsWith('http') ? new URL(normalizedHref) : new URL(normalizedHref, baseUrl); const baseUrlObj = new URL(baseUrl); const isExternal = url.origin !== baseUrlObj.origin && !normalizedHref.includes('vivatech.com') && !normalizedHref.includes('vivatechnology.com'); if (isExternal) { continue; } // Add tracking parameters const hasExistingParams = url.search.length > 0; if (hasExistingParams) { url.search += '&' + paramsString; } else { url.search = '?' + paramsString; } anchor.setAttribute('href', url.origin + url.pathname + url.search + (url.hash || '')); } catch (e) { // If href is not a valid URL, skip it continue; } } }; /******* END JAVASCRIPT *******/ /******* INTEGRATION *******/ // Or with DOMContentLoaded document.addEventListener('DOMContentLoaded', () => { insertTrackingCode(); }); /******* END INTEGRATION *******/