Stuff to make standing up sigstore (esp. for testing) easier for e2e/integration testing.

Overview

sigstore-scaffolding

This repository contains scaffolding to make standing up a full sigstore stack easier and automatable. Our focus is on running on Kubernetes and rely on several primitives provided by k8s as well as some semantics. As a starting point, below is a markdown version of a Google document that @nsmith5 and @vaikas did based on a discussion in a sigstore community meeting on 2022-01-10.

Sigstore automation for tests

Ville Aikas <[email protected]>

Nathan Smith <[email protected]>

2022-01-11

Quickstart

If you do not care about the nitty gritty details and just want to stand up a stack, check out the Getting Started Guide

Background

Currently in various e2e tests we (the community) do not exercise all the components of the Sigstore when running tests. This results in us skipping some validation tests (for example, but not limited to, –insecure-skip-verify flag), or using public instances for some of the tests. Part of the reason is that there are currently some manual steps or some assumptions baked in some places that make this trickier than is strictly necessary. At Chainguard we use all the sigstore components heavily and utilize GitHub actions for our e2e/integration tests, and have put together some components that might make it easier for other folks as well as upstream to do more thorough testing as well as hopefully catch breaking changes by ensuring that we have the ability to test the full stack by various clients (for example, Tekton Chains is one example, I’m sure there are others).

A wonderful very detailed document for standing all the pieces from scratch is given in Luke Hinds’ “Sigstore the hard way

Overview

This document is meant to describe what pieces have been built and why. The goals are to be able to stand up a fully functional setup suitable for k8s clusters, including KinD, which is what we use in our GitHub actions for our integration testing.

Because we assume k8s is the environment that we run in, we make use of a couple of concepts provided by it that make automation easier.

  • Jobs - Run to completion abstraction. Creates pods, if they fail, will recreate until it succeeds, or finally gives up.
  • ConfigMaps - Hold arbitrary configuration information
  • Secrets - Hold secrety information, but care must be taken for these to actually be secret

By utilizing the Jobs “run to completion” properties, we can construct “gates” in our automation, which allows us to not proceed until a Job completes successfully (“full speed ahead”) or fails (fail the test setup and bail). These take a form of using kubectl wait command, for example, waiting for jobs in ‘mynamespace’ to complete within 5 minutes or fail.:

kubectl wait --timeout 5m -n mynamespace --for=condition=Complete jobs --all

Another k8s concept we utilize is the ability to mount both ConfigMaps and Secrets into Pods. Furthermore, if a ConfigMap or Secret (and more granularly a ‘key’ in either, but it’s not important) is not available, the Pod will block starting. This naturally gives us another “gate” which allows us to deploy components and rely on k8s to reconcile to a known good state (or fail if it can not be accomplished).

Components

Here’s a high level overview of the components in play that we would like to be able to spin up with the lines depicting dependencies. Later on in the document we will cover each of these components in detail, starting from the “bottom up”.

alt_text

Trillian

For Trillian, there needs to be a database and a schema before Trillian services are able to function. Our assumption is that there is a provisioned mysql database, for our Github actions, we spin up a container that has the mysql running, and then we need to create a schema for it.

For this we create a Kubernetes Job, which runs against a given mysql database and verifies that all the tables and indices exist. It does not currently handle upgrades to schema, but this is a feature that could be added, but looking at the Change History of the schema, the schema seems to be stable and adding this feature seemed not worth doing at this point.

So, we have a k8s Job called ‘CreateDB’ which is responsible for creating the schema for a given database. As a reminder, because this is a job, automation can gate any further action before this Job successfully completes. We can also (but not currently) make Trillian services depend on the output of ‘CreateDB’ before proceeding (by using the mounting technique described above), but we have not had need for that yet because they recover if the schema does not exist.

Rekor

Rekor requires a Merkle tree that has been created in Trillian to function. This can be achieved by using the admin grpc client CreateTree call. This again is a Job ‘CreateTree’ and this job will also create a ConfigMap containing the newly minted TreeID. This allows us to (recall mounting Configmaps to pods from above) to block Rekor server from starting before the TreeID has been provisioned. So, assuming that Rekor runs in Namespace rekor-system and the ConfigMap that is created by ‘CreateTree’ Job, we can have the following (some stuff omitted for readability) in our Rekor Deployment to ensure that Rekor will not start prior to TreeID having been properly provisioned.

spec:
  template:
    spec:
      containers:
      - name: rekor-server
        image: ko://github.com/sigstore/rekor/cmd/rekor-server
        args: [
          "serve",
          "--trillian_log_server.address=log-server.trillian-system.svc",
          "--trillian_log_server.port=80",
          "--trillian_log_server.tlog_id=$(TREE_ID)",
        ]
        env:
        - name: TREE_ID
          valueFrom:
            configMapKeyRef:
              name: rekor-config
              key: treeID

CTLog

CTLog is the first piece in the puzzle that requires a bit more wrangling because it actually has a dependency on Trillian as well as Fulcio (more about Fulcio details later).

For Trillian, we just need to create another TreeID, but we’re reusing the same ‘CreateTree’ Job from above.

In addition to Trillian, the dependency on Fulcio is that we need to establish trust for the Root Certificate that Fulcio is using so that when Fulcio sends requests for inclusion in our CTLog, we trust it. For this, we use RootCert API call to fetch the Certificate.

Lastly we need to create a Certificate for CTLog itself.

So in addition to ‘CreateTree’ Job, we also have a ‘CreateCerts’ Job that will fail to make progress until TreeID has been populated in the ConfigMap by the ‘CreateTree’ call above. Once the TreeID has been created, it will try to fetch a Fulcio Root Certificate (again, failing until it becomes available). Once the Fulcio Root Certificate is retrieved, the Job will then create a Public/Private keys to be used by the CTLog service and will write the following two Secrets (names can be changed ofc):

  • ctlog-secrets - Holds the public/private keys for CTLog as well as Root Certificate for Fulcio in the following keys:
    • private - CTLog private key
    • public - CTLog public key
    • rootca - Fulcio Root Certificate
  • ctlog-public-key - Holds the public key for CTLog so that clients calling Fulcio will able to verify the SCT that they receive from Fulcio.

In addition to the Secrets above, the Job will also add a new entry into the ConfigMap (now that I write this, it could just as well go in the secrets above I think…) created by the ‘CreateTree’ above. This entry is called ‘config’ and it’s a serialized ProtoBuf required by the CTLog to start up.

Again by using the fact that the Pod will not start until all the required ConfigMaps / Secrets are available, we can configure the CTLog deployment to block until everything is available. Again for brevity some things have been left out, but the CTLog configuration would look like so:

spec:
  template:
    spec:
      containers:
        - name: ctfe
          image: ko://github.com/google/certificate-transparency-go/trillian/ctfe/ct_server
          args: [
            "--http_endpoint=0.0.0.0:6962",
            "--log_config=/ctfe-config/ct_server.cfg",
            "--alsologtostderr"
          ]
          volumeMounts:
          - name: keys
            mountPath: "/ctfe-keys"
            readOnly: true
          - name: config
            mountPath: "/ctfe-config"
            readOnly: true
      volumes:
        - name: keys
          secret:
            secretName: ctlog-secret
            items:
            - key: private
              path: privkey.pem
            - key: public
              path: pubkey.pem
            - key: rootca
              path: roots.pem
        - name: config
          configMap:
            name: ctlog-config
            items:
            - key: config
              path: ct_server.cfg

Here instead of mounting into environmental variables, we must mount to the filesystem given how the CTLog expects these things to be materialized.

Ok, so with the ‘CreateTree’ and ‘CreateCerts’ jobs having successfully completed, CTLog will happily start up and be ready to serve requests. Again if it fails, tests will fail and the logs will contain information about the particular failure.

Also, the reason why the public key was created in a different secret is because clients will need access to this key because they need that public key to verify the SCT returned by the Fulcio to ensure it actually was properly signed.

Fulcio

Make it stop!!! Is there more??? Last one, I promise… For Fulcio we just need to create a Root Certificate that it will use to sign incoming Signing Certificate requests. For this we again have a Job ‘CreateCerts’ (different from above: TODO(vaikas): Rename)) that will create a self signed certificate, private/public keys as well as password used to encrypt the private key. Basically we need to ensure we have all the necessary pieces to start up Fulcio.

This ‘CreateCerts’ job just creates the pieces mentioned above and creates a Secret containing the following keys:

  • cert - Root Certificate
  • private - Private key
  • password - Password to use for decrypting the private key
  • public - Public key

And as seen already above, we modify the Deployment to not start the Pod until all the pieces are available, making our Deployment of Fulcio look (simplified again) like this.

spec:
  template:
    spec:
      containers:
      - image: ko://github.com/sigstore/fulcio/cmd/fulcio
        name: fulcio
        args:
          - "serve"
          - "--port=5555"
          - "--ca=fileca"
          - "--fileca-key"
          - "/var/run/fulcio-secrets/key.pem"
          - "--fileca-cert"
          - "/var/run/fulcio-secrets/cert.pem"
          - "--fileca-key-passwd"
          - "$(PASSWORD)"
          - "--ct-log-url=http://ctlog.ctlog-system.svc/e2e-test-tree"
        env:
        - name: PASSWORD
          valueFrom:
            secretKeyRef:
              name: fulcio-secret
              key: password
        volumeMounts:
        - name: fulcio-cert
          mountPath: "/var/run/fulcio-secrets"
          readOnly: true
      volumes:
      - name: fulcio-cert
        secret:
          secretName: fulcio-secret
          items:
          - key: private
            path: key.pem
          - key: cert
            path: cert.pem

Other rando stuff

This document focused on the Tree management, Certificate, Key and such creation automagically, coordinating the interactions and focusing on the fact that no manual intervention is required at any point during the deployment and relying on k8s primitives and semantics. What has been left out only because there are already existing solutions is configuring each of the services to actually connect at the dataplane level. For example, in the Fulcio case, the argument to Fulcio ‘--ct-log-url’ needs to point to where the CTLog above was installed or hilarity will of course follow.

I’m curious if there would be appetite for upstreaming these.

Comments
  • Quick Start

    Quick Start "FUN" Part 1

    Env Details KIND= kind v0.11.1 go1.16.4 linux/amd64 KO= v0.9.3 Knative Serving = latest K8s= 1.21.1 GO= go version go1.17.3 linux/amd64 Hardware OS = Ubuntu 20.04.2 LTS

    STEPS TO RECREATE:

    1. create a default cluster in kind and install knative serving
    2. run ko apply -BRf ./config

    Output of kubectl get pods --all-namespaces

    image

    Output of k get jobs --all-namespaces

    image

    Issue(s): ctlog-system

    looks like ctlog-public-key not found?

    image

    Trillian-System Log Signer (Pod ImagePullBackoff issue) image

    opened by danpopnyc 11
  • Use SIGSTORE_REKOR_PUBLIC_KEY, remove SIGSTORE_TRUST_REKOR_API_PUBLIC_KEY

    Use SIGSTORE_REKOR_PUBLIC_KEY, remove SIGSTORE_TRUST_REKOR_API_PUBLIC_KEY

    Description

    Users should be using verification material out of band, and we should deprecate SIGSTORE_TRUST_REKOR_API_PUBLIC_KEY.

    Instead, the scaffolding setup should export SIGSTORE_REKOR_PUBLIC_KEY with the location of the public key file, similar to the CT log public key.

    enhancement 
    opened by asraa 10
  • Figure out what is causing grief on k8s 1.23

    Figure out what is causing grief on k8s 1.23

    This passed with 1.21 and 1.22 but 1.23 seemed to be timing out jobs since looked like they were only retried 6 times. Is this a new behaviour or did something else change? https://github.com/sigstore/cosign/runs/5697562612?check_suite_focus=true

    bug 
    opened by vaikas 9
  • Create K8s pod metric based logs and alerts

    Create K8s pod metric based logs and alerts

    Closes https://github.com/sigstore/public-good-instance/issues/703

    Summary

    Summary of metrics and alert policies

    This PR adds two log based metrics for K8s pod errors for Rekor and Fulcio (so four new logs are added in total). It also adds alert policies around each metric.

    The metrics simply count the number log entries that contain the specified k8s error message (either "unscheduable" or "Back-off restarting failed container") where resource.type is k8s_pod and resource.labels.namespace_name is either fulcio-system or rekor-system (depending on the specific metric).

    The alert policies on these metrics will fire when logs with the error messages are present for more than ten minutes.

    The metrics and alert policies were first created in the GCP UI and converted to Terraform with the terraformer tool. Below are links to the metrics and alert policies in the GCP UI.

    Notes on the approach

    https://github.com/sigstore/public-good-instance/issues/703 mentioned investigating whether we could use the GCP Error Reporting service, since it is automatically capturing the K8s pod errors. After some digging, that service does not seem to be supported in the Google Terraform provider and I was unable to configure PagerDuty notifications for it. So I opted to create these logs and alerts manually. These metrics and alerts are almost identical to each other, so it would be good to investigate whether we can reuse some of these metric and alert definitions but for the first pass, I opted to just create separate resource definitions for each metric and alert.

    Questions for the reviewer:

    • Do we want to create these metrics and alerts for the other K8s deployments in the project, like the prober? I just added metrics and alerts to Rekor and Fulcio to start. We can add more in this PR or create a follow up issue.

    Release Note

    None.

    Documentation

    None.

    opened by malancas 7
  • sigstore/scaffolding/actions/setup@main currently broken

    sigstore/scaffolding/actions/setup@main currently broken

    Description

    Currently working on an enhancement proposal for the Tekton Chains project. When running e2e tests for this project sigstore/scaffolding/actions/setup@main is called. This currently fails with the following output:

    + kubectl apply -f https://github.com/sigstore/scaffolding/releases/download/v0.4.0/release.yaml
    error: unable to read URL "https://github.com/sigstore/scaffolding/releases/download/v0.4.0/release.yaml", server reported 404 Not Found, status code=404
    

    This action is called here.

    bug 
    opened by bcaton85 7
  • Remove latency alerts on uptime checks

    Remove latency alerts on uptime checks

    Context and discussion at https://github.com/sigstore/public-good-instance/issues/513

    Signed-off-by: Priya Wadhwa [email protected]

    Summary

    Release Note

    Documentation

    opened by priyawadhwa 7
  • fix: actions/cache

    fix: actions/cache

    Summary

    Fixes actions/cache in the E2E tests by properly constructing a cache key and reordering certain steps to populate/reuse the cache, e.g. when installing dependencies.

    Ticket Link

    Fixes: #140 Signed-off-by: Michael Gasch [email protected]

    Release Note

    NONE
    
    opened by embano1 7
  • Bump google.golang.org/grpc from 1.45.0 to 1.46.0

    Bump google.golang.org/grpc from 1.45.0 to 1.46.0

    Bumps google.golang.org/grpc from 1.45.0 to 1.46.0.

    Release notes

    Sourced from google.golang.org/grpc's releases.

    Release 1.46.0

    New Features

    • server: Support setting TCP_USER_TIMEOUT on grpc.Server connections using keepalive.ServerParameters.Time (#5219)
    • client: perform graceful switching of LB policies in the ClientConn by default (#5285)
    • all: improve logging by including channelz identifier in log messages (#5192)

    API Changes

    • grpc: delete WithBalancerName() API, deprecated over 4 years ago in #1697 (#5232)
    • balancer: change BuildOptions.ChannelzParentID to an opaque identifier instead of int (#5192)
      • Note: the balancer package is labeled as EXPERIMENTAL, and we don't believe users were using this field.

    Behavior Changes

    • client: change connectivity state to TransientFailure in pick_first LB policy when all addresses are removed (#5274)
      • This is a minor change that brings grpc-go's behavior in line with the intended behavior and how C and Java behave.
    • metadata: add client-side validation of HTTP-invalid metadata before attempting to send (#4886)

    Bug Fixes

    • metadata: make a copy of the value slices in FromContext() functions so that modifications won't be made to the original copy (#5267)
    • client: handle invalid service configs by applying the default, if applicable (#5238)
    • xds: the xds client will now apply a 1 second backoff before recreating ADS or LRS streams (#5280)

    Dependencies

    Commits
    • e8d06c5 Change version to 1.46.0 (#5296)
    • efbd542 gcp/observability: correctly test this module in presubmit tests (#5300) (#5307)
    • 4467a29 gcp/observability: implement logging via binarylog (#5196)
    • 18fdf54 cmd/protoc-gen-go-grpc: allow hooks to modify client structs and service hand...
    • 337b815 interop: build client without timeout; add logs to help debug failures (#5294)
    • e583b19 xds: Add RLS in xDS e2e test (#5281)
    • 0066bf6 grpc: perform graceful switching of LB policies in the ClientConn by defaul...
    • 3cccf6a xdsclient: always backoff between new streams even after successful stream (#...
    • 4e78093 xds: ignore routes with unsupported cluster specifiers (#5269)
    • 99aae34 cluster manager: Add Graceful Switch functionality to Cluster Manager (#5265)
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies go 
    opened by dependabot[bot] 7
  • Terraform configuration for Timestamp Authority

    Terraform configuration for Timestamp Authority

    Copy-paste for the win

    Ref: https://github.com/sigstore/timestamp-authority/issues/48

    Signed-off-by: Hayden Blauzvern [email protected]

    Summary

    Release Note

    Documentation

    opened by haydentherapper 5
  • Add ctlog shards that create their own Cloud SQL instances.

    Add ctlog shards that create their own Cloud SQL instances.

    Signed-off-by: Ville Aikas [email protected]

    Summary

    WIP: Need to do some testing, but wanted to share the approach early :)

    Starts putting the pieces at the infra level necessary for:

    • https://github.com/sigstore/public-good-instance/issues/343
    • https://github.com/sigstore/public-good-instance/issues/418
    • https://github.com/sigstore/public-good-instance/issues/524

    In particular:

    • Add mysql creation (optionally) into the CTLog module. It's made optional since we already use that module, and we don't want to create a new Cloud SQL instance for the already existing one.
    • Add ctlog_shards variable to Sigstore ctlog_shards which is a list of shards. So we'd add, say 2021 into this list first to create a new separate Cloud SQL instance for the new CTLog
    • Add ctlog_mysql_instances which outputs the list of CTLog DB instances

    Release Note

    • Add ability to create new CTLog shards with their own Cloud SQL instance.

    Documentation

    opened by vaikas 5
  • Add Terraform resource for TUF preprod bucket

    Add Terraform resource for TUF preprod bucket

    This will be used to store the staged TUF prod root before it's synced to the production bucket, letting us catch issues early.

    This is already created in production.

    Signed-off-by: Hayden Blauzvern [email protected]

    Summary

    Ticket Link

    Fixes

    Release Note

    
    
    opened by haydentherapper 5
  • Testing timestamp-authority from HEAD

    Testing timestamp-authority from HEAD

    We test the timestamp authority CLI from HEAD (See https://github.com/sigstore/scaffolding/blob/48993611d81a91328460cee18b3b48725711755a/.github/workflows/test-release.yaml#L136-L162, and https://github.com/sigstore/scaffolding/blob/48993611d81a91328460cee18b3b48725711755a/.github/workflows/test-action-tuf.yaml#L87-L112 and https://github.com/sigstore/scaffolding/blob/48993611d81a91328460cee18b3b48725711755a/.github/workflows/fulcio-rekor-kind.yaml#L198-L223). If we make any breaking changes at HEAD, this breaks tests. As noted in https://github.com/sigstore/timestamp-authority/issues/177, when we changed cert-chain to certificate-chain, this caused CI to break. I recommend checking out the latest released version and having dependabot handle updating to the latest release.

    cc @vaikas @bobcallaway

    bug 
    opened by haydentherapper 0
  • [DNM] Test grpc with duplex.

    [DNM] Test grpc with duplex.

    Signed-off-by: Ville Aikas [email protected]

    Summary

    Testing https://github.com/sigstore/cosign/pull/1762 with duplex.

    Release Note

    Documentation

    opened by vaikas 0
  • Add ability to install specific versions of Fulcio, Rekor, etc.

    Add ability to install specific versions of Fulcio, Rekor, etc.

    Description

    It would be nice to be able to specify which release version of the components should be stood up, for example: https://github.com/sigstore/cosign/pull/2402#issuecomment-1301150996

    It would be nice to be able to specify which (for example, Rekor), say 1.0.0 or 1.0.x that should get installed. Couple of things off the top of my head is to grab the releases from GitHub and then parse, like is done here (so supports, latest, 1.0.0, and 1.0.x: https://github.com/chainguard-dev/actions/blob/main/setup-knative/action.yaml#L82

    So, that's cool, it gives us the version for the release we're looking for, but then we need to go through and actually pull out the released container image. I'm not sure where else this is kept right now except in things like: https://github.com/sigstore/rekor/releases/download/v1.0.0/rekor-v1.0.0.yaml

    where we'd then pull the image from. Is there a release artifact that we would have the container image we could get in an easier manner? @cpanato thoughts?

    And lastly, once we get the container image, we'd need to kustomize (or something else) and replace the various ./config files with the correct container images. Like here: https://github.com/sigstore/scaffolding/blob/main/config/rekor/rekor/300-rekor.yaml#L22

    enhancement 
    opened by vaikas 1
  • Terraform: OpenStack Support

    Terraform: OpenStack Support

    Description

    Scaffolding project currently only supports GCP Terraform provider. We want (@developer-guy) to provision a full sigstore stack on OpenStack. Does it make sense to create a new folder called openstack in the terraform folder to drop all related modules in there?

    Of course, we can extend the supporting list in the future:

    • AWS
    • VMware Cloud Director
    • Azure
    • Alibaba
    • Azure
    • etc.
    enhancement 
    opened by Dentrax 1
Releases(v0.5.4)
  • v0.5.4(Dec 5, 2022)

    Changelog

    • 1c509d9 ensure we don't leak resp.Body on fulcio prober (#496)

    Thanks to all contributors!

    What's Changed

    • Bump actions/setup-go from 3.3.1 to 3.4.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/491
    • Bump github/codeql-action from 2.1.31 to 2.1.35 by @dependabot in https://github.com/sigstore/scaffolding/pull/492
    • Bump github.com/sigstore/timestamp-authority from 0.1.2 to 0.1.3 by @dependabot in https://github.com/sigstore/scaffolding/pull/493
    • Bump github.com/go-sql-driver/mysql from 1.6.0 to 1.7.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/494
    • ensure we don't leak resp.Body on fulcio prober by @bobcallaway in https://github.com/sigstore/scaffolding/pull/496

    Full Changelog: https://github.com/sigstore/scaffolding/compare/v0.5.3...v0.5.4

    Source code(tar.gz)
    Source code(zip)
    release-ctlog.yaml(5.43 KB)
    release-fulcio.yaml(7.01 KB)
    release-prober.yaml(729 bytes)
    release-rekor.yaml(5.66 KB)
    release-trillian.yaml(7.73 KB)
    release-tsa.yaml(3.09 KB)
    release-tuf.yaml(3.03 KB)
    setup-kind.sh(10.83 KB)
    setup-scaffolding-from-release.sh(6.29 KB)
    setup-scaffolding.sh(5.15 KB)
    testrelease.yaml(10.55 KB)
  • v0.5.3(Dec 2, 2022)

    Changelog

    • 601e594 Update release instructions to use git tag from cli. (#488)

    Thanks to all contributors!

    What's Changed

    • Remove extra copy of the secret that's causing grief. by @vaikas in https://github.com/sigstore/scaffolding/pull/490
    • Update release instructions to use git tag from cli. by @vaikas in https://github.com/sigstore/scaffolding/pull/488

    Full Changelog: https://github.com/sigstore/scaffolding/compare/v0.5.2...v0.5.3

    Source code(tar.gz)
    Source code(zip)
    release-ctlog.yaml(5.43 KB)
    release-fulcio.yaml(7.01 KB)
    release-prober.yaml(729 bytes)
    release-rekor.yaml(5.66 KB)
    release-trillian.yaml(7.73 KB)
    release-tsa.yaml(3.09 KB)
    release-tuf.yaml(3.03 KB)
    setup-kind.sh(10.83 KB)
    setup-scaffolding-from-release.sh(6.29 KB)
    setup-scaffolding.sh(5.15 KB)
    testrelease.yaml(10.55 KB)
  • v0.5.2(Nov 29, 2022)

    Changelog

    • b6be37e Fix secret update (#487)

    Thanks to all contributors!

    What's Changed

    • Bump github.com/sigstore/sigstore from 1.4.5 to 1.4.6 by @dependabot in https://github.com/sigstore/scaffolding/pull/486
    • Exercise TSA in action/release tests. by @vaikas in https://github.com/sigstore/scaffolding/pull/484
    • Fix secret update by @vaikas in https://github.com/sigstore/scaffolding/pull/487

    Full Changelog: https://github.com/sigstore/scaffolding/compare/v0.5.1...v0.5.2

    Source code(tar.gz)
    Source code(zip)
    release-ctlog.yaml(5.43 KB)
    release-fulcio.yaml(7.01 KB)
    release-prober.yaml(729 bytes)
    release-rekor.yaml(5.66 KB)
    release-trillian.yaml(7.73 KB)
    release-tsa.yaml(3.09 KB)
    release-tuf.yaml(3.03 KB)
    setup-kind.sh(10.83 KB)
    setup-scaffolding-from-release.sh(6.45 KB)
    setup-scaffolding.sh(5.15 KB)
    testrelease.yaml(10.55 KB)
  • v0.5.0(Nov 23, 2022)

    What's Changed

    • Issue 450 2 by @vaikas in https://github.com/sigstore/scaffolding/pull/467
    • export FULCIO_GRPC_URL when installing scaffolding using GHA by @bobcallaway in https://github.com/sigstore/scaffolding/pull/466
    • Add initial release documentationl by @tstromberg in https://github.com/sigstore/scaffolding/pull/403
    • Remove meaningless tests. Test with k8s 1.25 by @vaikas in https://github.com/sigstore/scaffolding/pull/468
    • Bump golang.org/x/crypto from 0.1.0 to 0.2.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/471
    • Bump k8s.io/api from 0.25.3 to 0.25.4 by @dependabot in https://github.com/sigstore/scaffolding/pull/470
    • Bump github.com/sigstore/rekor from 1.0.0 to 1.0.1 by @dependabot in https://github.com/sigstore/scaffolding/pull/469
    • Bump k8s.io/code-generator from 0.25.3 to 0.25.4 by @dependabot in https://github.com/sigstore/scaffolding/pull/475
    • Bump github.com/sigstore/timestamp-authority from 0.1.1 to 0.1.2 by @dependabot in https://github.com/sigstore/scaffolding/pull/474
    • Bump k8s.io/client-go from 0.25.3 to 0.25.4 by @dependabot in https://github.com/sigstore/scaffolding/pull/472
    • Add TSA certs to TUF root. by @vaikas in https://github.com/sigstore/scaffolding/pull/477
    • Update README diagram and add TSA. by @vaikas in https://github.com/sigstore/scaffolding/pull/478
    • Bump golang.org/x/crypto from 0.2.0 to 0.3.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/479
    • Bump google.golang.org/grpc from 1.50.1 to 1.51.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/480
    • increase trillian timeout to 5 min. by @vaikas in https://github.com/sigstore/scaffolding/pull/481
    • Install TSA if release > 0.5.0. Remove old cruft. by @vaikas in https://github.com/sigstore/scaffolding/pull/482

    New Contributors

    • @tstromberg made their first contribution in https://github.com/sigstore/scaffolding/pull/403

    Full Changelog: https://github.com/sigstore/scaffolding/compare/v0.4.13...v0.5.0

    Source code(tar.gz)
    Source code(zip)
    release-ctlog.yaml(5.43 KB)
    release-fulcio.yaml(7.01 KB)
    release-prober.yaml(729 bytes)
    release-rekor.yaml(5.66 KB)
    release-trillian.yaml(7.73 KB)
    release-tsa.yaml(3.09 KB)
    release-tuf.yaml(3.03 KB)
    setup-kind.sh(10.83 KB)
    setup-scaffolding-from-release.sh(6.25 KB)
    setup-scaffolding.sh(5.15 KB)
    testrelease.yaml(10.55 KB)
  • v0.4.13(Nov 9, 2022)

    Changelog

    • a4fbf80 Add tsa to scaffolding. (#464)
    • e09d7b3 Delete unused github actions service account provisioning. (#428)
    • 7b3c867 add fulcio-grpc as knative service (#463)
    • 226db88 unpin setup-kind to stop using (#461)
    • fc9e9e7 Bump github.com/prometheus/client_golang from 1.13.0 to 1.13.1 (#460)
    • 0aef55f Terraform configuration for timestamp authority module (#455)
    • f4b16c5 change redis to match version used in production (#456)
    • c3445ab increase redis memory to prevent OOM errors in Rekor prod (#453)
    • fb58c35 Revert "Terraform configuration for timestamp authority module (#449)" (#452)
    • e644b1e Terraform configuration for timestamp authority module (#449)
    • 5b82657 plumb ways to add metadata about targets. (#437)
    • e8aff7a create gcp secret for mysql user and database name (#447)
    • 24e5b33 drop 1.22.x usage (#448)
    • c6847c6 Bump github.com/sigstore/fulcio from 0.6.0 to 1.0.0 (#443)
    • 625efa4 Bump github.com/sigstore/sigstore from 1.4.4 to 1.4.5 (#444)
    • e81fda3 Bump github.com/sigstore/rekor from 0.12.2 to 1.0.0 (#442)
    • 616b7ab Bump github.com/sigstore/cosign from 1.13.0 to 1.13.1 (#445)
    • abd8899 Bump github.com/google/certificate-transparency-go from 1.1.3 to 1.1.4 (#446)
    • dc4f9e1 add var for ctlog shard mysql db name (#436)
    • 0aadec7 allow specifying max resources available to node autoscaling for sigs… (#434)
    • 755ce04 Fix another typo in metrics: oneof -> one_of (#433)
    • 3099716 Fix typo in prober alerts. (#432)
    • 846b655 pin knative version (#431)
    • 7052248 Add in defaults for node pool autoscaling (#430)

    Thanks to all contributors!

    Source code(tar.gz)
    Source code(zip)
    release-ctlog.yaml(5.43 KB)
    release-fulcio.yaml(7.01 KB)
    release-prober.yaml(729 bytes)
    release-rekor.yaml(5.66 KB)
    release-trillian.yaml(7.73 KB)
    release-tsa.yaml(2.99 KB)
    release-tuf.yaml(3.03 KB)
    setup-kind.sh(10.83 KB)
    setup-scaffolding-from-release.sh(5.15 KB)
    setup-scaffolding.sh(5.14 KB)
    testrelease.yaml(10.55 KB)
  • v0.4.12(Oct 18, 2022)

    What's Changed

    • Update k8s log alert policy filters by @malancas in https://github.com/sigstore/scaffolding/pull/400
    • Create alert for prober verification failures by @codysoyland in https://github.com/sigstore/scaffolding/pull/402
    • Update alert name and condition name by @malancas in https://github.com/sigstore/scaffolding/pull/404
    • Define basic ctlog and dex availability SLOs. by @var-sdk in https://github.com/sigstore/scaffolding/pull/405
    • Alert on SLO burn rate by @var-sdk in https://github.com/sigstore/scaffolding/pull/408
    • use retryablehttp client for prober by @bobcallaway in https://github.com/sigstore/scaffolding/pull/415
    • Remove api.sigstore.dev CNAME record by @haydentherapper in https://github.com/sigstore/scaffolding/pull/417
    • Add explicit dependency on project_roles for all modules. by @var-sdk in https://github.com/sigstore/scaffolding/pull/416
    • Write the repository into secret, test air-gap mode. by @vaikas in https://github.com/sigstore/scaffolding/pull/382
    • add explicit dependencies on the associated metrics by @malancas in https://github.com/sigstore/scaffolding/pull/407
    • Add ctlog shards that create their own Cloud SQL instances. by @vaikas in https://github.com/sigstore/scaffolding/pull/370
    • Add allow lists for probed methods. by @var-sdk in https://github.com/sigstore/scaffolding/pull/406
    • Use GITHUB_OUTPUT instead of deprecated set-output by @cpanato in https://github.com/sigstore/scaffolding/pull/418
    • Configure cluster autoscaling from sigstore module by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/427
    • add support for pre-existing secrets for CTLog. by @vaikas in https://github.com/sigstore/scaffolding/pull/429

    Full Changelog: https://github.com/sigstore/scaffolding/compare/v0.4.11...v0.4.12

    Source code(tar.gz)
    Source code(zip)
    release-ctlog.yaml(5.43 KB)
    release-fulcio.yaml(4.91 KB)
    release-prober.yaml(729 bytes)
    release-rekor.yaml(5.66 KB)
    release-trillian.yaml(7.73 KB)
    release-tuf.yaml(3.03 KB)
    setup-kind.sh(11.22 KB)
    setup-scaffolding-from-release.sh(4.88 KB)
    setup-scaffolding.sh(4.44 KB)
    testrelease.yaml(10.55 KB)
  • v0.4.11(Oct 4, 2022)

    What's Changed

    • Enable reporting of normalized SLO endpoint in prober. by @var-sdk in https://github.com/sigstore/scaffolding/pull/401

    Full Changelog: https://github.com/sigstore/scaffolding/compare/v0.4.10...v0.4.11

    Source code(tar.gz)
    Source code(zip)
    release-ctlog.yaml(5.43 KB)
    release-fulcio.yaml(4.91 KB)
    release-prober.yaml(729 bytes)
    release-rekor.yaml(5.66 KB)
    release-trillian.yaml(7.73 KB)
    release-tuf.yaml(3.03 KB)
    setup-kind.sh(11.22 KB)
    setup-scaffolding-from-release.sh(4.88 KB)
    setup-scaffolding.sh(4.44 KB)
    testrelease.yaml(10.55 KB)
  • v0.4.10(Oct 18, 2022)

    What's Changed

    • Fix typo in config var name by @codysoyland in https://github.com/sigstore/scaffolding/pull/392
    • Create K8s pod metric based logs and alerts by @malancas in https://github.com/sigstore/scaffolding/pull/391
    • Remove broken probe by UUID and add probing for fulcio v2 read endpoints. by @var-sdk in https://github.com/sigstore/scaffolding/pull/394
    • Add availability. SLO definitions to terraform for Fulcio and Rekor by @var-sdk in https://github.com/sigstore/scaffolding/pull/393
    • Missed this one last time around. google-beta => google by @vaikas in https://github.com/sigstore/scaffolding/pull/396
    • Add prober flags for passing extra requests. by @var-sdk in https://github.com/sigstore/scaffolding/pull/395

    Full Changelog: https://github.com/sigstore/scaffolding/compare/v0.4.9...v0.4.10

    Source code(tar.gz)
    Source code(zip)
    release-ctlog.yaml(5.43 KB)
    release-fulcio.yaml(4.91 KB)
    release-prober.yaml(729 bytes)
    release-rekor.yaml(5.66 KB)
    release-trillian.yaml(7.73 KB)
    release-tuf.yaml(3.03 KB)
    setup-kind.sh(11.22 KB)
    setup-scaffolding-from-release.sh(4.88 KB)
    setup-scaffolding.sh(4.44 KB)
    testrelease.yaml(10.55 KB)
  • v0.4.8(Sep 23, 2022)

    What's Changed

    • Add back support for RSA for legacy deployed CTLogs. by @vaikas in https://github.com/sigstore/scaffolding/pull/341
    • Remove /api/v1/index/retrieve endpoint from prober checks since it's experimental by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/340
    • do not use setup-kind action from the head. by @vaikas in https://github.com/sigstore/scaffolding/pull/345
    • Wire missing oslogin parameter to oslogin module. by @var-sdk in https://github.com/sigstore/scaffolding/pull/346
    • Add kind support for v1.25.x by @vaikas in https://github.com/sigstore/scaffolding/pull/343
    • Update prober alerts to accept 201s on write APIs. by @var-sdk in https://github.com/sigstore/scaffolding/pull/350
    • Fix prober alerts. by @var-sdk in https://github.com/sigstore/scaffolding/pull/353
    • Correct a link in README.md. by @var-sdk in https://github.com/sigstore/scaffolding/pull/355
    • Use file based signer now that Rekor supports it. by @vaikas in https://github.com/sigstore/scaffolding/pull/358
    • Close the httpresponse.Body by @vaikas in https://github.com/sigstore/scaffolding/pull/357
    • Make tuf generic in prep for more fulcio / ctlog certs/keys. by @vaikas in https://github.com/sigstore/scaffolding/pull/356
    • Stop testing way older versions. build/test with go1.19 by @vaikas in https://github.com/sigstore/scaffolding/pull/366
    • add dns resources to service-level terraform by @bobcallaway in https://github.com/sigstore/scaffolding/pull/336
    • Use ctlog.config for creating certs, add managecaroots job, tests. by @vaikas in https://github.com/sigstore/scaffolding/pull/352
    • Trillian v0.12.1, Rekor v0.12.1, update go deps. by @vaikas in https://github.com/sigstore/scaffolding/pull/367
    • refactor signing release images by @cpanato in https://github.com/sigstore/scaffolding/pull/368
    • fix shellcheck by @cpanato in https://github.com/sigstore/scaffolding/pull/376

    Full Changelog: https://github.com/sigstore/scaffolding/compare/v0.4.7...v0.4.8

    Source code(tar.gz)
    Source code(zip)
    release-ctlog.yaml(5.43 KB)
    release-fulcio.yaml(4.91 KB)
    release-prober.yaml(729 bytes)
    release-rekor.yaml(5.66 KB)
    release-trillian.yaml(7.73 KB)
    release-tuf.yaml(3.03 KB)
    setup-kind.sh(11.12 KB)
    setup-scaffolding-from-release.sh(4.88 KB)
    setup-scaffolding.sh(4.44 KB)
    testrelease.yaml(10.55 KB)
  • v0.4.6(Aug 24, 2022)

    What's Changed

    • Disable noisy rekor alert by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/303
    • Bump github.com/go-openapi/swag from 0.22.0 to 0.22.3 by @dependabot in https://github.com/sigstore/scaffolding/pull/310
    • Bump github.com/sigstore/cosign from 1.10.1 to 1.11.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/306
    • Bump github/codeql-action from 2.1.18 to 2.1.19 by @dependabot in https://github.com/sigstore/scaffolding/pull/305
    • Bump sigstore/cosign-installer from 2.5.0 to 2.5.1 by @dependabot in https://github.com/sigstore/scaffolding/pull/304
    • Bump github.com/google/trillian from 1.4.2 to 1.5.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/309
    • Bump github.com/sigstore/rekor from 0.10.0 to 0.11.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/311
    • Bump all sigstore components. Use GODEBUG=netdns=go for fulcio. by @vaikas in https://github.com/sigstore/scaffolding/pull/316

    Full Changelog: https://github.com/sigstore/scaffolding/compare/v0.4.5...v0.4.6

    Source code(tar.gz)
    Source code(zip)
    release-ctlog.yaml(5.76 KB)
    release-fulcio.yaml(4.91 KB)
    release-prober.yaml(729 bytes)
    release-rekor.yaml(5.07 KB)
    release-trillian.yaml(7.73 KB)
    release-tuf.yaml(3.20 KB)
    setup-kind.sh(9.97 KB)
    setup-scaffolding-from-release.sh(4.88 KB)
    setup-scaffolding.sh(4.44 KB)
    testrelease.yaml(5.50 KB)
  • v0.4.5(Aug 19, 2022)

    What's Changed

    • Updates to reflect v0.4.4 by @vaikas in https://github.com/sigstore/scaffolding/pull/300
    • remove deprecated github.com/pkg/errors and use native go error by @cpanato in https://github.com/sigstore/scaffolding/pull/301
    • New kind images + more retries to work around 1.23 by @vaikas in https://github.com/sigstore/scaffolding/pull/302

    Full Changelog: https://github.com/sigstore/scaffolding/compare/v0.4.4...v0.4.5

    Source code(tar.gz)
    Source code(zip)
    release-ctlog.yaml(5.76 KB)
    release-fulcio.yaml(4.75 KB)
    release-prober.yaml(729 bytes)
    release-rekor.yaml(5.07 KB)
    release-trillian.yaml(7.71 KB)
    release-tuf.yaml(3.20 KB)
    setup-kind.sh(9.97 KB)
    setup-scaffolding-from-release.sh(4.96 KB)
    setup-scaffolding.sh(4.52 KB)
    testrelease.yaml(5.50 KB)
  • v0.4.4(Aug 16, 2022)

    What's Changed

    • bump rekor to v0.10.0 and fulcio to v0.5.2 by @vaikas in https://github.com/sigstore/scaffolding/pull/295
    • actually parse the release-version, update curl to fail properly by @vaikas in https://github.com/sigstore/scaffolding/pull/290
    • Bump github.com/go-openapi/swag from 0.21.1 to 0.22.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/293
    • add working-directory input so that you can control where files go. by @vaikas in https://github.com/sigstore/scaffolding/pull/294
    • Fix issue #129 by @vaikas in https://github.com/sigstore/scaffolding/pull/296
    • Increase ksvc wait times 45s->2m. by @vaikas in https://github.com/sigstore/scaffolding/pull/299

    Full Changelog: https://github.com/sigstore/scaffolding/compare/v0.4.3...v0.4.4

    Source code(tar.gz)
    Source code(zip)
    release-ctlog.yaml(5.21 KB)
    release-fulcio.yaml(4.47 KB)
    release-prober.yaml(729 bytes)
    release-rekor.yaml(4.59 KB)
    release-trillian.yaml(7.44 KB)
    release-tuf.yaml(2.93 KB)
    setup-kind.sh(9.94 KB)
    setup-scaffolding-from-release.sh(4.96 KB)
    setup-scaffolding.sh(4.52 KB)
    testrelease.yaml(5.50 KB)
  • v0.4.3(Aug 12, 2022)

    What's Changed

    • New Release artifact: add prober to build and release the image/manifests by @cpanato in https://github.com/sigstore/scaffolding/pull/288

    • Reenable noisy latency alert by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/280

    • use release 0.4.2. Bump knative to 1.6.0. by @vaikas in https://github.com/sigstore/scaffolding/pull/279

    • chore: use verification out of band by @hectorj2f in https://github.com/sigstore/scaffolding/pull/276

    • Fix prober metric alerts type by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/281

    • Remove latency alerts on uptime checks by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/273

    • Add clearer logging to prober by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/282

    • Fix #286 : Make waits for jobs uniform, 30 retries, ttl of 600. by @vaikas in https://github.com/sigstore/scaffolding/pull/287

    • Add flag sigstore-only for installing into existing clusters by @vaikas in https://github.com/sigstore/scaffolding/pull/285

    • Document action better. by @vaikas in https://github.com/sigstore/scaffolding/pull/284

    • add prober to build and release the image/manifests by @cpanato in https://github.com/sigstore/scaffolding/pull/288

    New Contributors

    • @hectorj2f made their first contribution in https://github.com/sigstore/scaffolding/pull/276

    Full Changelog: https://github.com/sigstore/scaffolding/compare/v0.4.2...v0.4.3

    Source code(tar.gz)
    Source code(zip)
    release-ctlog.yaml(5.21 KB)
    release-fulcio.yaml(4.54 KB)
    release-prober.yaml(729 bytes)
    release-rekor.yaml(4.58 KB)
    release-trillian.yaml(7.44 KB)
    release-tuf.yaml(2.93 KB)
    setup-kind.sh(9.94 KB)
    setup-scaffolding-from-release.sh(4.72 KB)
    setup-scaffolding.sh(4.53 KB)
    testrelease.yaml(5.50 KB)
  • v0.4.2(Aug 9, 2022)

    What's Changed

    • Breaking change: setup-scaffolding.sh assumed you had ko installed locally, so added a proper replacement for previous release.yaml and replace it with setup-scaffolding-from-release.sh instead.

    • Give mysql SA permissions to export Monitoring/Trace data by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/272

    • Roles should be applied directly to the mysql service account by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/278

    • FIX Broken main action . Test with 0.4.1 release by @vaikas in https://github.com/sigstore/scaffolding/pull/277

    Full Changelog: https://github.com/sigstore/scaffolding/compare/v0.4.1...v0.4.2

    Source code(tar.gz)
    Source code(zip)
    release-ctlog.yaml(5.21 KB)
    release-fulcio.yaml(4.54 KB)
    release-rekor.yaml(4.58 KB)
    release-trillian.yaml(7.44 KB)
    release-tuf.yaml(2.93 KB)
    setup-kind.sh(9.94 KB)
    setup-scaffolding-from-release.sh(4.72 KB)
    setup-scaffolding.sh(4.53 KB)
    testrelease.yaml(5.50 KB)
  • v0.4.1(Aug 9, 2022)

    What's Changed

    • Modify test to use release v0.4.0, update getting-started. by @vaikas in https://github.com/sigstore/scaffolding/pull/274

    Full Changelog: https://github.com/sigstore/scaffolding/compare/v0.4.0...v0.4.1

    Source code(tar.gz)
    Source code(zip)
    release-ctlog.yaml(5.21 KB)
    release-fulcio.yaml(4.54 KB)
    release-rekor.yaml(4.58 KB)
    release-trillian.yaml(7.44 KB)
    release-tuf.yaml(2.93 KB)
    setup-kind.sh(9.94 KB)
    setup-scaffolding-from-release.sh(4.28 KB)
    setup-scaffolding.sh(4.08 KB)
    testrelease.yaml(5.50 KB)
  • v0.4.0(Aug 8, 2022)

    What's Changed

    • Breaking change: remove release.yaml because for TUF you can not just do a simple kubectl apply. Replaced with setup-scaffolding.sh

    • Increse Cloud SQL disk utilization threshold to 95% by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/193

    • Add prober check for Fulcio write endpoint by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/194

    • Add github action to run prober once when it's updated by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/195

    • actually pass through the mysql version to the module. by @k4leung4 in https://github.com/sigstore/scaffolding/pull/197

    • test go mod tidy by @k4leung4 in https://github.com/sigstore/scaffolding/pull/198

    • bump tuf version by @k4leung4 in https://github.com/sigstore/scaffolding/pull/200

    • Bump github/codeql-action from 2.1.11 to 2.1.12 by @dependabot in https://github.com/sigstore/scaffolding/pull/201

    • Bump google.golang.org/grpc from 1.46.2 to 1.47.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/203

    • Refactor alerts and fix prober error code alert by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/199

    • Bump tfsec/tfsec-sarif-action from 0.1.0 to 0.1.3 by @dependabot in https://github.com/sigstore/scaffolding/pull/202

    • Bump github.com/sigstore/rekor from 0.7.0 to 0.8.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/207

    • Bump sigstore/cosign-installer from 2.3.0 to 2.4.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/205

    • Bump github.com/sigstore/fulcio from 0.4.1 to 0.5.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/208

    • Allow custom URLs for Rekor/Fulcio for prober by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/209

    • add data audit module. by @k4leung4 in https://github.com/sigstore/scaffolding/pull/210

    • add slack token secret by @cpanato in https://github.com/sigstore/scaffolding/pull/212

    • raise version upper limit to allow terraform 1.2.0+ by @k4leung4 in https://github.com/sigstore/scaffolding/pull/213

    • Add Rekor write endpoint to prober by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/214

    • add maintenance policy, avoid work hours for google maintenance by @k4leung4 in https://github.com/sigstore/scaffolding/pull/215

    • Bump github.com/sigstore/rekor from 0.8.0 to 0.8.1 by @dependabot in https://github.com/sigstore/scaffolding/pull/219

    • Bump sigs.k8s.io/release-utils from 0.6.0 to 0.7.1 by @dependabot in https://github.com/sigstore/scaffolding/pull/216

    • raise allowed google provider version to 4.25 by @k4leung4 in https://github.com/sigstore/scaffolding/pull/224

    • Updates by @cpanato in https://github.com/sigstore/scaffolding/pull/222

    • enable managed prometheus by default. by @k4leung4 in https://github.com/sigstore/scaffolding/pull/223

    • Bump github.com/sigstore/rekor from 0.8.1 to 0.8.2 by @dependabot in https://github.com/sigstore/scaffolding/pull/226

    • Bump github/codeql-action from 2.1.12 to 2.1.14 by @dependabot in https://github.com/sigstore/scaffolding/pull/225

    • increase timeout from 5 to 15min for argocd helm release. by @k4leung4 in https://github.com/sigstore/scaffolding/pull/227

    • upgrade kubectl / helm terraform providers by @cpanato in https://github.com/sigstore/scaffolding/pull/228

    • Add Terraform resource for TUF preprod bucket by @haydentherapper in https://github.com/sigstore/scaffolding/pull/229

    • Bump github/codeql-action from 2.1.14 to 2.1.15 by @dependabot in https://github.com/sigstore/scaffolding/pull/230

    • Bump sigstore/cosign-installer from 2.4.0 to 2.4.1 by @dependabot in https://github.com/sigstore/scaffolding/pull/231

    • Bump github.com/sigstore/rekor from 0.8.2 to 0.9.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/232

    • Temporarily disable Rekor alert until we get around to fixing it by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/234

    • Bump docs/test to using release v0.3.0. by @vaikas in https://github.com/sigstore/scaffolding/pull/235

    • Bump github.com/sigstore/rekor from 0.9.0 to 0.9.1 by @dependabot in https://github.com/sigstore/scaffolding/pull/237

    • Bump github.com/sigstore/fulcio from 0.5.0 to 0.5.1 by @dependabot in https://github.com/sigstore/scaffolding/pull/236

    • Update prober alert metric names to Prometheus targets by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/238

    • Bump github/codeql-action from 2.1.15 to 2.1.16 by @dependabot in https://github.com/sigstore/scaffolding/pull/240

    • Bump github.com/go-openapi/strfmt from 0.21.2 to 0.21.3 by @dependabot in https://github.com/sigstore/scaffolding/pull/241

    • Bump google.golang.org/grpc from 1.47.0 to 1.48.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/243

    • Bump actions/setup-go from 3.2.0 to 3.2.1 by @dependabot in https://github.com/sigstore/scaffolding/pull/239

    • Allow creating alerts with multiple notification channels by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/249

    • Bump github.com/sigstore/cosign from 1.9.0 to 1.10.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/250

    • Bump github.com/google/trillian from 1.4.1 to 1.4.2 by @dependabot in https://github.com/sigstore/scaffolding/pull/257

    • Bump sigstore/cosign-installer from 2.4.1 to 2.5.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/254

    • Bump sigs.k8s.io/release-utils from 0.7.1 to 0.7.3 by @dependabot in https://github.com/sigstore/scaffolding/pull/258

    • Bump github.com/sigstore/fulcio from 0.5.1 to 0.5.2 by @dependabot in https://github.com/sigstore/scaffolding/pull/259

    • Bump google.golang.org/protobuf from 1.28.0 to 1.28.1 by @dependabot in https://github.com/sigstore/scaffolding/pull/256

    • Bump github/codeql-action from 2.1.16 to 2.1.17 by @dependabot in https://github.com/sigstore/scaffolding/pull/253

    • Bump github.com/sigstore/rekor from 0.9.1 to 0.10.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/255

    • add support for adding read replicas. can be used for failover by @k4leung4 in https://github.com/sigstore/scaffolding/pull/251

    • use workload identity for external secret instead of service key. by @k4leung4 in https://github.com/sigstore/scaffolding/pull/233

    • bump external-secrets api to v1beta1 now we are on v0.5.x by @k4leung4 in https://github.com/sigstore/scaffolding/pull/260

    • plumb mysql replica configuration into sigstore module. by @k4leung4 in https://github.com/sigstore/scaffolding/pull/261

    • Add a tuf server as well as repo management for tuf. by @vaikas in https://github.com/sigstore/scaffolding/pull/262

    • remove token creator role for external secrets. by @k4leung4 in https://github.com/sigstore/scaffolding/pull/264

    • clean up unused module variables by @k4leung4 in https://github.com/sigstore/scaffolding/pull/266

    • Refactor the github action, test with tuf root. by @vaikas in https://github.com/sigstore/scaffolding/pull/263

    • Bump github.com/sigstore/cosign from 1.10.0 to 1.10.1 by @dependabot in https://github.com/sigstore/scaffolding/pull/270

    • Bump github/codeql-action from 2.1.17 to 2.1.18 by @dependabot in https://github.com/sigstore/scaffolding/pull/269

    • Bump github.com/prometheus/client_golang from 1.12.2 to 1.13.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/271

    • Add job ttls, use setup-scaffolding for e2e tests, update getting-started.md by @vaikas in https://github.com/sigstore/scaffolding/pull/267

    • Break release into smaller chunks. by @vaikas in https://github.com/sigstore/scaffolding/pull/268

    Full Changelog: https://github.com/sigstore/scaffolding/compare/v0.3.0...v0.4.0

    Source code(tar.gz)
    Source code(zip)
    release-ctlog.yaml(5.21 KB)
    release-fulcio.yaml(4.54 KB)
    release-rekor.yaml(4.58 KB)
    release-trillian.yaml(7.44 KB)
    release-tuf.yaml(2.93 KB)
    setup-kind.sh(9.78 KB)
    setup-scaffolding.sh(4.08 KB)
    testrelease.yaml(5.50 KB)
  • v0.3.0(May 30, 2022)

    What's Changed

    • Bump k8s.io/apimachinery from 0.23.5 to 0.23.6 by @dependabot in https://github.com/sigstore/scaffolding/pull/137
    • Bump k8s.io/api from 0.23.5 to 0.23.6 by @dependabot in https://github.com/sigstore/scaffolding/pull/139
    • Bump actions/checkout from 3.0.1 to 3.0.2 by @dependabot in https://github.com/sigstore/scaffolding/pull/135
    • Bump hashicorp/setup-terraform from 1.4.0 to 2 by @dependabot in https://github.com/sigstore/scaffolding/pull/134
    • Bump k8s.io/client-go from 0.23.5 to 0.23.6 by @dependabot in https://github.com/sigstore/scaffolding/pull/132
    • Bump k8s.io/code-generator from 0.23.5 to 0.23.6 by @dependabot in https://github.com/sigstore/scaffolding/pull/133
    • Update setup-kind.sh by @loosebazooka in https://github.com/sigstore/scaffolding/pull/142
    • have always 1 pod running to avoid scale to 0 in ci by @cpanato in https://github.com/sigstore/scaffolding/pull/143
    • Bump github.com/sigstore/sigstore from 1.1.0 to 1.2.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/136
    • fix: actions/cache by @embano1 in https://github.com/sigstore/scaffolding/pull/141
    • Bump github.com/go-openapi/runtime from 0.23.3 to 0.24.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/146
    • Bump sigstore/cosign-installer from 2.2.1 to 2.3.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/144
    • Bump github/codeql-action from 2.1.8 to 2.1.9 by @dependabot in https://github.com/sigstore/scaffolding/pull/145
    • Add Job for updating tree for sharding by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/147
    • Bump docker/login-action from 1.14.1 to 2 by @dependabot in https://github.com/sigstore/scaffolding/pull/148
    • Make mysql instance name, and keys configurable in Terraform by @k4leung4 in https://github.com/sigstore/scaffolding/pull/156
    • allow configuring of mysql db name. by @k4leung4 in https://github.com/sigstore/scaffolding/pull/157
    • Add in a read-only prober across Rekor and Fulcio API endpoints by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/158
    • Add alerts for sigstore prober to monitoring tf module by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/160
    • make storage class and location configurable. by @k4leung4 in https://github.com/sigstore/scaffolding/pull/159
    • Bump github/codeql-action from 2.1.9 to 2.1.10 by @dependabot in https://github.com/sigstore/scaffolding/pull/161
    • Bump github.com/google/certificate-transparency-go from 1.1.2 to 1.1.3 by @dependabot in https://github.com/sigstore/scaffolding/pull/165
    • Bump actions/setup-go from 3.0.0 to 3.1.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/162
    • pass correct var for tuf region. by @k4leung4 in https://github.com/sigstore/scaffolding/pull/166
    • Bind sigstore-prober KSA to GCP prometheus service account by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/167
    • Set keyring iam to depend on service account to avoid error. by @k4leung4 in https://github.com/sigstore/scaffolding/pull/168
    • Add vars for mysql to allow matching prod migration instance. by @k4leung4 in https://github.com/sigstore/scaffolding/pull/170
    • More uptime alerts for rekor endpoints by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/155
    • Fix alert documentation and set alignment period to 5m by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/172
    • set service account to correct prometheus namespace by @k4leung4 in https://github.com/sigstore/scaffolding/pull/173
    • Add necessary permissions to prometheus SA to export to GCP monitoring by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/174
    • allow specifying mysql dbname. by @k4leung4 in https://github.com/sigstore/scaffolding/pull/175
    • Alignment period for latency alerts should be 60 seconds by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/176
    • Bump github.com/prometheus/client_golang from 1.12.1 to 1.12.2 by @dependabot in https://github.com/sigstore/scaffolding/pull/179
    • Bump goreleaser/goreleaser-action from 2.9.1 to 3 by @dependabot in https://github.com/sigstore/scaffolding/pull/178
    • Bump github/codeql-action from 2.1.10 to 2.1.11 by @dependabot in https://github.com/sigstore/scaffolding/pull/177
    • Bump google.golang.org/grpc from 1.45.0 to 1.46.2 by @dependabot in https://github.com/sigstore/scaffolding/pull/164
    • sync go mod by @cpanato in https://github.com/sigstore/scaffolding/pull/184
    • add flag to run one time and exit. by @k4leung4 in https://github.com/sigstore/scaffolding/pull/181
    • change default mysql version from 8.0 to 5.7 by @k4leung4 in https://github.com/sigstore/scaffolding/pull/180
    • update to go1.18 by @cpanato in https://github.com/sigstore/scaffolding/pull/185
    • Bump github.com/sigstore/rekor from 0.6.0 to 0.7.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/189
    • Bump actions/setup-go from 3.1.0 to 3.2.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/186
    • add pathremove cache, not needed by @cpanato in https://github.com/sigstore/scaffolding/pull/192

    New Contributors

    • @embano1 made their first contribution in https://github.com/sigstore/scaffolding/pull/141

    Full Changelog: https://github.com/sigstore/scaffolding/compare/v0.2.9...v0.3.0

    Thanks to all contributors!

    Source code(tar.gz)
    Source code(zip)
    release.yaml(20.94 KB)
    setup-kind.sh(9.78 KB)
    testrelease.yaml(4.23 KB)
  • v0.2.9(Apr 25, 2022)

    What's Changed

    • bump kind node versions. by @k4leung4 in https://github.com/sigstore/scaffolding/pull/126
    • Add firewall to allow ingress webhook by @k4leung4 in https://github.com/sigstore/scaffolding/pull/123
    • Updated ctlog config to include CodeSigning usage. by @k4leung4 in https://github.com/sigstore/scaffolding/pull/125
    • Add checks in setup-kind for existing steps by @eddiezane in https://github.com/sigstore/scaffolding/pull/122
    • Bump instructions to use latest release (v0.2.8) and test with it. by @vaikas in https://github.com/sigstore/scaffolding/pull/130
    • Do not scale fulcio/rekor down to zero to prevent flakes when waiting for things to come up.

    New Contributors

    • @eddiezane made their first contribution in https://github.com/sigstore/scaffolding/pull/122

    Full Changelog: https://github.com/sigstore/scaffolding/compare/v0.2.8...v0.2.9

    Source code(tar.gz)
    Source code(zip)
    release.yaml(19.82 KB)
    setup-kind.sh(9.63 KB)
    testrelease.yaml(4.11 KB)
  • v0.2.8(Apr 19, 2022)

    What's Changed

    • sync go module by @cpanato in https://github.com/sigstore/scaffolding/pull/124
    • Fetch only root certificate from cert chain by @haydentherapper in https://github.com/sigstore/scaffolding/pull/111
    • Add KMS key for Fulcio by @haydentherapper in https://github.com/sigstore/scaffolding/pull/112
    • fix missing variables for kms rekor/fulcio by @cpanato in https://github.com/sigstore/scaffolding/pull/114
    • Add presubmit test for "terraform validate" to the sigstore module by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/116
    • use chainguard set of actions to avoid duplication by @cpanato in https://github.com/sigstore/scaffolding/pull/113
    • Split up KMS module keys into rekor and fulcio modules by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/117
    • Bump actions/checkout from 3.0.0 to 3.0.1 by @dependabot in https://github.com/sigstore/scaffolding/pull/118
    • Bump github.com/sigstore/rekor from 0.5.0 to 0.6.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/121
    • Bump github/codeql-action from 1 to 2.1.8 by @dependabot in https://github.com/sigstore/scaffolding/pull/120
    • Bump sigstore/cosign-installer from 2.2.0 to 2.2.1 by @dependabot in https://github.com/sigstore/scaffolding/pull/119

    New Contributors

    • @haydentherapper made their first contribution in https://github.com/sigstore/scaffolding/pull/111

    Full Changelog: https://github.com/sigstore/scaffolding/compare/v0.2.6...v0.2.8

    Source code(tar.gz)
    Source code(zip)
    release.yaml(19.66 KB)
    setup-kind.sh(9.47 KB)
    testrelease.yaml(4.11 KB)
  • v0.2.6(Apr 11, 2022)

    What's Changed

    • Test with v0.2.5, update docs. by @vaikas in https://github.com/sigstore/scaffolding/pull/89
    • Add sigstore terraform for GCP by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/93
    • Add in github action for terraform fmt and tfsec by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/98
    • sigstore module depends on bastion module by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/97
    • Add examples for signing and verifying an image, as well as by @vaikas in https://github.com/sigstore/scaffolding/pull/94
    • Mention there are TF templates, add pointer. by @vaikas in https://github.com/sigstore/scaffolding/pull/96
    • Resurrect trillian createdb by @k4leung4 in https://github.com/sigstore/scaffolding/pull/92
    • fix secret keys to match helm chart expectation. by @k4leung4 in https://github.com/sigstore/scaffolding/pull/99
    • Allow specifying the password to use for creating and encrypting keys and pems by @k4leung4 in https://github.com/sigstore/scaffolding/pull/103
    • change default cert registration info. by @k4leung4 in https://github.com/sigstore/scaffolding/pull/104
    • Make enabling CA service with Fulcio optional by @priyawadhwa in https://github.com/sigstore/scaffolding/pull/101
    • Bump actions/upload-artifact from 2 to 3 by @dependabot in https://github.com/sigstore/scaffolding/pull/109
    • Bump hashicorp/setup-terraform from 1.3.2 to 1.4.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/108
    • pin versions using git commit instead of tags by @cpanato in https://github.com/sigstore/scaffolding/pull/110

    New Contributors

    • @priyawadhwa made their first contribution in https://github.com/sigstore/scaffolding/pull/93
    • @k4leung4 made their first contribution in https://github.com/sigstore/scaffolding/pull/92

    Full Changelog: https://github.com/sigstore/scaffolding/compare/v0.2.5...v0.2.6

    Thanks to all contributors!

    Source code(tar.gz)
    Source code(zip)
    release.yaml(19.66 KB)
    setup-kind.sh(9.47 KB)
    testrelease.yaml(4.11 KB)
  • v0.2.5(Apr 5, 2022)

  • v0.2.4(Apr 4, 2022)

    What's Changed

    ******* @vaikas screwed up this release :) Do not use, there are no artifacts *******

    • more detailed log for fulcio root cert fetch error by @tsl0922 in https://github.com/sigstore/scaffolding/pull/84
    • Start of an action to install kind,knative and sigstore pieces + tests. by @vaikas in https://github.com/sigstore/scaffolding/pull/85
    • rename inputs to be more consistent with others. by @vaikas in https://github.com/sigstore/scaffolding/pull/86
    • Test release with v0.2.3. by @vaikas in https://github.com/sigstore/scaffolding/pull/87
    • Use apko as base image and add version information by @cpanato in https://github.com/sigstore/scaffolding/pull/88

    New Contributors

    • @tsl0922 made their first contribution in https://github.com/sigstore/scaffolding/pull/84

    Full Changelog: https://github.com/sigstore/scaffolding/compare/v0.2.3...v0.2.4

    Source code(tar.gz)
    Source code(zip)
  • v0.2.3(Mar 28, 2022)

    What's Changed

    • Bump docs release version to v0.2.2 and test with it. by @vaikas in https://github.com/sigstore/scaffolding/pull/74
    • Bump k8s.io/client-go from 0.23.4 to 0.23.5 by @dependabot in https://github.com/sigstore/scaffolding/pull/76
    • Bump k8s.io/code-generator from 0.23.4 to 0.23.5 by @dependabot in https://github.com/sigstore/scaffolding/pull/79
    • Bump github.com/go-openapi/runtime from 0.23.2 to 0.23.3 by @dependabot in https://github.com/sigstore/scaffolding/pull/77
    • Bump google.golang.org/protobuf from 1.27.1 to 1.28.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/83
    • Bump actions/cache from 2 to 3 by @dependabot in https://github.com/sigstore/scaffolding/pull/82
    • Starting to play with URLs in e2e tests. by @vaikas in https://github.com/sigstore/scaffolding/pull/75

    Full Changelog: https://github.com/sigstore/scaffolding/compare/v0.2.2...v0.2.3

    Thanks to all contributors!

    Source code(tar.gz)
    Source code(zip)
    release.yaml(18.16 KB)
    setup-kind.sh(9.47 KB)
    testrelease.yaml(4.11 KB)
  • v0.2.2(Mar 16, 2022)

    What's Changed

    • update license headers and add job to check the boilerplate by @cpanato in https://github.com/sigstore/scaffolding/pull/69
    • Bump google.golang.org/grpc from 1.44.0 to 1.45.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/71
    • add shellcheck action job by @cpanato in https://github.com/sigstore/scaffolding/pull/72
    • Change job check-oidc name to sign-job. by @vaikas in https://github.com/sigstore/scaffolding/pull/73

    Full Changelog: https://github.com/sigstore/scaffolding/compare/v0.2.1...v0.2.2

    Thanks to all contributors!

    Source code(tar.gz)
    Source code(zip)
    release.yaml(17.94 KB)
    setup-kind.sh(9.47 KB)
    testrelease.yaml(3.40 KB)
  • v0.2.1(Mar 8, 2022)

    What's Changed

    • Bump sigstore/cosign-installer from 2.0.1 to 2.1.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/55
    • Bump google.golang.org/grpc from 1.43.0 to 1.44.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/59
    • Bump github.com/go-openapi/strfmt from 0.21.1 to 0.21.2 by @dependabot in https://github.com/sigstore/scaffolding/pull/63
    • Bump github.com/go-openapi/runtime from 0.21.0 to 0.23.2 by @dependabot in https://github.com/sigstore/scaffolding/pull/62
    • Bump github.com/sigstore/rekor from 0.4.0 to 0.5.0 by @dependabot in https://github.com/sigstore/scaffolding/pull/61
    • Bump k8s.io/apimachinery from 0.23.1 to 0.23.4 by @dependabot in https://github.com/sigstore/scaffolding/pull/56
    • Bump k8s.io/api from 0.23.1 to 0.23.4 by @dependabot in https://github.com/sigstore/scaffolding/pull/60
    • Bump k8s.io/client-go from 0.23.1 to 0.23.4 by @dependabot in https://github.com/sigstore/scaffolding/pull/58
    • Bump k8s.io/code-generator from 0.22.5 to 0.23.4 by @dependabot in https://github.com/sigstore/scaffolding/pull/57
    • Fix issue #65 by renaming ctlog/createcerts to createctconfig by @vaikas in https://github.com/sigstore/scaffolding/pull/67
    • fix ko config by @cpanato in https://github.com/sigstore/scaffolding/pull/68

    Full Changelog: https://github.com/sigstore/scaffolding/compare/v0.2.0...v0.2.1

    Thanks to all contributors!

    Source code(tar.gz)
    Source code(zip)
    release.yaml(20.56 KB)
    setup-kind.sh(9.02 KB)
    testrelease.yaml(1.89 KB)
  • v0.2.0(Mar 7, 2022)

    What's Changed

    • Test with 0.1.19 release. by @vaikas in https://github.com/sigstore/scaffolding/pull/49
    • Create codeql-analysis.yml by @vaikas in https://github.com/sigstore/scaffolding/pull/50
    • Clean up README, update links from vaikas/sigstore-scaffolding to sigstore/scaffolding. by @vaikas in https://github.com/sigstore/scaffolding/pull/51
    • Release job update by @cpanato in https://github.com/sigstore/scaffolding/pull/52
    • add dependabot by @cpanato in https://github.com/sigstore/scaffolding/pull/53
    • Bump actions/checkout from 2 to 3 by @dependabot in https://github.com/sigstore/scaffolding/pull/54

    New Contributors

    • @cpanato made their first contribution in https://github.com/sigstore/scaffolding/pull/52

    Full Changelog: https://github.com/sigstore/scaffolding/compare/v0.1.19...v0.2.0

    Thanks to all contributors!

    Source code(tar.gz)
    Source code(zip)
    release.yaml(20.55 KB)
    setup-kind.sh(9.02 KB)
    testrelease.yaml(1.89 KB)
  • v0.1.19(Feb 26, 2022)

  • v0.1.18(Feb 26, 2022)

Owner
Ville Aikas
Ville Aikas
kubectl plugin for signing Kubernetes manifest YAML files with sigstore

k8s-manifest-sigstore kubectl plugin for signing Kubernetes manifest YAML files with sigstore ⚠️ Still under developement, not ready for production us

sigstore 70 Nov 28, 2022
Plugin for Helm to integrate the sigstore ecosystem

helm-sigstore Plugin for Helm to integrate the sigstore ecosystem. Search, upload and verify signed Helm Charts in the Rekor Transparency Log. Info he

sigstore 47 Dec 21, 2022
Lightweight, single-binary Backup Repository client. Part of E2E Backup Architecture designed by RiotKit

Backup Maker Tiny backup client packed in a single binary. Interacts with a Backup Repository server to store files, uses GPG to secure your backups e

RiotKit 1 Apr 4, 2022
Kubelet-bench - Example Go-based e2e benchmark for various Kubelet operations without spinning up whole K8s cluster

kubelet-bench An example of Go based e2e benchmark for various Kubelet operation

Bartlomiej Plotka 3 Mar 17, 2022
Utility to make kubeseal --raw a bit easier.

ks Utility to make kubeseal --raw a bit easier. Building GOOS=windows GOARCH=amd64 go build -o ks-windows-amd64.exe ks.go GOOS=windows GOARCH=386 go b

null 1 Aug 19, 2022
Golang Integration Testing Framework For Kong Kubernetes APIs and Controllers.

Kong Kubernetes Testing Framework (KTF) Testing framework used by the Kong Kubernetes Team for the Kong Kubernetes Ingress Controller (KIC). Requireme

Kong 26 Dec 20, 2022
Terraform provider to help with various AWS automation tasks (mostly all that stuff we cannot accomplish with the official AWS terraform provider)

terraform-provider-awsutils Terraform provider for performing various tasks that cannot be performed with the official AWS Terraform Provider from Has

Cloud Posse 25 Dec 8, 2022
Kubernetes Stuff

Kubernetes Stuff

Brian 0 Jan 11, 2022
This is a CLI to help changing and doing stuff in Terraform Cloud.

Terraform Cloud Tool This is a CLI to help changing and doing stuff in Terraform Cloud. Terraform CLI Functions $ terraform-cloud-tool Terraform Cloud

Edson Ribeiro Junior 2 Jul 27, 2022
A demo repository that shows CI/CD integration using DroneCI + ArgoCD + Kubernetes.

CI/CD Demo This is the demo repo for my blog post. This tutorial shows how to build CI/CD pipeline with DroneCI and ArgoCD. In this demo, we use Drone

Hao-Ming, Hsu 43 Oct 18, 2022
Prevent Kubernetes misconfigurations from ever making it (again 😤) to production! The CLI integration provides policy enforcement solution to run automatic checks for rule violations. Docs: https://hub.datree.io

What is Datree? Datree helps to prevent Kubernetes misconfigurations from ever making it to production. The CLI integration can be used locally or in

datree.io 6.1k Jan 1, 2023
TriggerMesh open source event-driven integration platform powered by Kubernetes and Knative.

TriggerMesh open source event-driven integration platform powered by Kubernetes and Knative. TriggerMesh allows you to declaratively define event flows between sources and targets as well as add even filter, splitting and processing using functions.

TriggerMesh 373 Dec 30, 2022
Mutagen Compose is a modified version of Docker Compose that offers automated integration with Mutagen.

Mutagen Compose Mutagen Compose is a (minimally) modified version of Docker Compose that offers automated integration with Mutagen. This allows you to

Mutagen 81 Dec 22, 2022
A best practices Go source project with unit-test and integration test, also use skaffold & helm to automate CI & CD at local to optimize development cycle

Dependencies Docker Go 1.17 MySQL 8.0.25 Bootstrap Run chmod +x start.sh if start.sh script does not have privileged to run Run ./start.sh --bootstrap

Quang Nguyen 4 Apr 4, 2022
Conduit - Data Integration for Production Data Stores

Conduit Data Integration for Production Data Stores. ?? Overview Conduit is a da

Conduit 244 Jan 3, 2023
Mango-kong - Mango (man page generator) integration for Kong

Mango (man page generator) integration for Kong This package allows Kong package

Alec Thomas 15 Dec 5, 2022
jsPolicy - Easier & Faster Kubernetes Policies using JavaScript or TypeScript

Website • Getting Started Guide • Documentation • Blog • Twitter • Slack jsPolicy - Easier & Faster Kubernetes Policies using JavaScript or TypeScript

Loft Labs 243 Dec 30, 2022
Go library for easier work with sqlgo

sqlgo go library for easier work with sql Installation go get github.com/Mikhail

null 1 Jan 7, 2022
Kubeswitch - Easier way to switch your kubernetes context

Switch Kubectl Context Easier way to switch your kubernetes context Set PATH Dow

sai umesh 3 Jun 17, 2022