Skip to content

Commit

Permalink
Updates to rekor images and CI updates
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Block <[email protected]>
  • Loading branch information
sabre1041 committed Jul 23, 2021
1 parent f7b2da4 commit 7977455
Show file tree
Hide file tree
Showing 6 changed files with 56 additions and 8 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Release Charts

on:
push:
branches:
- main
paths-ignore:
- ".github/**"

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Set up Helm
uses: azure/setup-helm@v1
with:
version: v3.4.0

- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
14 changes: 13 additions & 1 deletion .github/workflows/lint.yml → .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- ".github/**"

jobs:
lint:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -28,3 +28,15 @@ jobs:

- name: Run chart-testing (lint)
run: ct lint --config ct.yaml --all

- name: "Add NGINX Ingress Repository"
run: "helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx"

- name: Create KIND Cluster
uses: helm/[email protected]

- name: Install Ingress Controller
run: "helm install ingress-nginx/ingress-nginx --generate-name --set controller.service.type='NodePort' --set controller.admissionWebhooks.enabled=false"

- name: Run chart-testing (install)
run: ct install --config ct.yaml --all
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sigstore Charts
# Helm Charts

[Helm](https://helm.sh) Charts to support the [Sigstore](https://sigstore.dev) project.

Expand Down
2 changes: 1 addition & 1 deletion charts/rekor/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: A Helm chart for Kubernetes

type: application

version: 0.1.1
version: 0.1.2

keywords:
- security
Expand Down
4 changes: 4 additions & 0 deletions charts/rekor/ci/ci-values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
server:
ingress:
hostname: rekor.localhost
10 changes: 5 additions & 5 deletions charts/rekor/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ mysql:
image:
repository: gcr.io/trillian-opensource-ci/db_server
pullPolicy: IfNotPresent
version: "5e12fb368c8fd19e10aeb5a5cf785107f8069c08"
version: "df474653733c51ed91d60cf3efee69f7bf3199bd"
resources: {}
args:
- "--ignore-db-dir=lost+found"
Expand Down Expand Up @@ -108,9 +108,9 @@ server:
name: server
port: 3000
image:
repository: gcr.io/projectsigstore/rekor/ci/rekor
repository: gcr.io/projectsigstore/rekor-server
pullPolicy: IfNotPresent
version: "sha256:0ea9a82e0f1e62d88e8f1a57403c0e0e3d269b3e5d84278c59db96fcf464f116"
version: "sha256:90baf84b7e4e09827a9fe3e5659923717a96d9c9dad909e1eb73f02b287c2a0d"
logging:
production: false
ingress:
Expand Down Expand Up @@ -178,7 +178,7 @@ trillianLogServer:
image:
repository: gcr.io/trillian-opensource-ci/log_server
pullPolicy: IfNotPresent
version: "5e12fb368c8fd19e10aeb5a5cf785107f8069c08"
version: "df474653733c51ed91d60cf3efee69f7bf3199bd"
service:
type: ClusterIP
ports:
Expand All @@ -205,7 +205,7 @@ trillianLogSigner:
image:
repository: gcr.io/trillian-opensource-ci/log_signer
pullPolicy: IfNotPresent
version: "5e12fb368c8fd19e10aeb5a5cf785107f8069c08"
version: "df474653733c51ed91d60cf3efee69f7bf3199bd"
service:
type: ClusterIP
ports:
Expand Down

0 comments on commit 7977455

Please sign in to comment.