Join us

ContentUpdates and recent posts about Sigstore..
Link
@anjali shared a link, 11 months, 3 weeks ago
Customer Marketing Manager, Last9

How to Log Into a Docker Container

Understand how to quickly log into a Docker container using simple commands to troubleshoot and manage your apps effectively.

Docker metrics
Story
@carlos_devops shared a post, 11 months, 3 weeks ago
Consultant, Independent

What is a recommended as a good alternative from JFrog for artifact management as an entrpise grade solution?

When thinking about enterprise-grade artifact management beyond JFrog Artifactory, how do other solutions measure up in terms of universal package support, scalability, security, and seamless DevOps integration?

Artifacts
Story
@laura_garcia shared a post, 11 months, 3 weeks ago
Software Developer, RELIANOID

📣 We're thrilled to see our solutions featured on TechBullion!

A big thank you to the TechBullion team for highlighting our work and helping spread the word about what we do. 🙌 🔗 https://www.relianoid.com/about-us/relianoid-related-articles/ #TechBullion#RELIANOID#CyberSecurity#LoadBalancing#Networking#Innovation#TechNews..

Article Techbullion on RELIANOID
Story
@laura_garcia shared a post, 11 months, 3 weeks ago
Software Developer, RELIANOID

🚀 Our first time in Taiwan! DevOpsDays Taipei

📍 June 5–6 | Taipei, Taiwan We’re excited to join DevOpsDays Taipei 2025, Taiwan’s biggest DevOps event! Over 700 IT pros, engineers, and tech leaders will gather to dive into automation, CI/CD, observability, SRE, and DevOps culture. 👥 Meet the RELIANOID team on-site! Discover how we help DevOps te..

devops days taipei 2025
Link
@anjali shared a link, 11 months, 3 weeks ago
Customer Marketing Manager, Last9

Prometheus Alerting Examples for Developers

Know how to set up smarter Prometheus alerts from basic CPU checks to app-aware rules that reduce noise and catch real issues early.

node
Link
@anjali shared a link, 11 months, 3 weeks ago
Customer Marketing Manager, Last9

Jaeger vs Zipkin: Which is Right for Your Distributed Tracing

Compare Jaeger and Zipkin to find the best fit for your distributed tracing needs, infrastructure, and observability goals.

rabbit
Story
@laura_garcia shared a post, 11 months, 3 weeks ago
Software Developer, RELIANOID

🔐 RELIANOID at Cyber Security Congress 2025 – Enabling a Secure Future

📍 June 4–5 | Santa Clara, California | Part of TechEx North America The future of cybersecurity demands smart, scalable solutions — and we’re ready to deliver. Join us at#CyberSecurityCongress, where RELIANOID will showcase advanced application delivery and threat protection technologies built for h..

Cyber Security Congress North America 2025
Story
@readdive shared a post, 11 months, 3 weeks ago
Founder, Read Dive

Snapchat and Generative AI: The Next Phase of Augmented Reality

Explore how Snapchat combines generative AI and augmented reality to transform digital creativity, user interaction, and storytelling in exciting new ways.

Snapchat and Generative AI
Story
@readdive shared a post, 11 months, 3 weeks ago
Founder, Read Dive

Ensuring Performance and Security: Testing Solutions for Crypto Mobile Apps

Ensure secure, high-performing crypto apps with expert solutions from mobile app testing companies. Learn key strategies and testing essentials.

Testing Solutions for Crypto
Link
@faun shared a link, 11 months, 3 weeks ago
FAUN.dev()

Learn How to Build Smarter AI Agents with Microsoft’s MCP Resources Hub

Microsoft's MCPconnects AI models to the real world, sharpening their wits with real-time context and tools likeAzureandVS Code. Plunge into theMCP Resources Hubfor open-source guides and code to launch your AI agent adventure... read more  

Learn How to Build Smarter AI Agents with Microsoft’s MCP Resources Hub
Sigstore is an open source initiative designed to make software artifact signing and verification simple, automatic, and widely accessible. Its primary goal is to improve software supply chain security by enabling developers and organizations to cryptographically prove the origin and integrity of the software they build and distribute.

At its core, sigstore removes many of the traditional barriers associated with code signing. Instead of managing long-lived private keys manually, sigstore supports keyless signing, where identities are issued dynamically using OpenID Connect (OIDC) providers such as GitHub Actions, Google, or Microsoft. This dramatically lowers operational complexity and reduces the risk of key compromise.

The sigstore ecosystem is composed of several key components:

- Cosign: A tool for signing, verifying, and storing signatures for container images and other artifacts. Signatures are stored alongside artifacts in OCI registries, rather than embedded in them.

- Fulcio: A certificate authority that issues short-lived X.509 certificates based on OIDC identities, enabling keyless signing.

- Rekor: A transparency log that records signing events in an append-only, tamper-evident ledger. This provides public auditability and detection of suspicious or malicious signing activity.

Together, these components allow anyone to verify who built an artifact, when it was built, and whether it has been tampered with, using publicly verifiable cryptographic proofs. This aligns closely with modern supply chain security practices such as SLSA (Supply-chain Levels for Software Artifacts).

sigstore is widely adopted in the cloud-native ecosystem and integrates with tools like Kubernetes, container registries, CI/CD pipelines, and package managers. It is commonly used to sign container images, Helm charts, binaries, and SBOMs, and is increasingly becoming a baseline security requirement for production software delivery.

The project is governed by the OpenSSF (Open Source Security Foundation) and supported by major industry players.