Demo proposal Week 6, DevSecOps : Enforced software authenticity for K8s using Sigstore and Kyverno - #2960
Draft
noizy-sthlm wants to merge 2 commits into
Draft
Demo proposal Week 6, DevSecOps : Enforced software authenticity for K8s using Sigstore and Kyverno#2960noizy-sthlm wants to merge 2 commits into
noizy-sthlm wants to merge 2 commits into
Conversation
Co-authored-by: Ivar Boqvist <iboqvist@users.noreply.github.com>
Collaborator
|
Missing student registration : If not from your group, fetch the upstream. |
Collaborator
|
Nice demo proposal with a clear objective and message! Looking forward to seeing it in action. |
Collaborator
|
Please mark your pull request as ready for review if you want it to be merged 🙂 |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Assignment Proposal
Title
Enforced software authenticity for K8s using Sigstore and Kyverno
Names and KTH ID
Deadline
Category
Description
Typesquatting and tampering remain as common techniques used to attack software supply chains. By default, a Kubernetes cluster will run any image you point it to without any checks to see if the image is provided by a trusted author. By setting up Kyverno on the cluster enforcing Sigstore signatures, these types of exploits can be partially mitigated.
In this demo we will present how to incorporate Sigstore into an existing CI-CD pipe to automatically sign new container builds and how to use Kyverno in a cluster to enforce trusted image execution using policies. To further ensure code provenance, we will configure a GitHub Runner to only allow gitsign-signed commits and, if that can be assured, self-sign main-branch builds using Sigstore. The demo will look into edge cases where the setup may be restricted or break in any way.
Relevance
Using Kyverno to verify image signatures using Sigstore is relevant to DevOps, or specifically DevSecOps, as it provides for a secure and automated way to ensure only builds signed by a verified workflow identity can be run inside your K8s cluster. Using Sigstore on its own without Kyverno provides for a way to sign and verify builds, but nothing prevents unsigned or improperly signed builds from being run on the K8s cluster by someone with access to it.