Skip to content

Commit

Permalink
Merge pull request #40 from vaikas/allow-public-oauth-issuers
Browse files Browse the repository at this point in the history
Add public oauth issuers, also add setup-kind.sh to release artifacts.
  • Loading branch information
vaikas committed Feb 7, 2022
2 parents a18f074 + 90f0b15 commit 886c468
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,3 +118,13 @@ jobs:
asset_path: ./src/github.com/${{ github.repository }}/testrelease.yaml
asset_name: testrelease.yaml
asset_content_type: text/plain

- name: Upload Create Kind cluster script
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GH_REPO_PAT }}
with:
upload_url: ${{ steps.get_release_url.outputs.upload_url }}
asset_path: ./src/github.com/${{ github.repository }}/hack/setup-kind.sh
asset_name: setup-kind.sh
asset_content_type: text/plain
11 changes: 11 additions & 0 deletions config/fulcio/fulcio/200-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,17 @@ data:
"IssuerURL": "https://kubernetes.default.svc",
"ClientID": "sigstore",
"Type": "kubernetes"
},
"https://accounts.google.com": {
"IssuerURL": "https://accounts.google.com",
"ClientID": "sigstore",
"Type": "email"
},
"https://oauth2.sigstore.dev/auth": {
"IssuerURL": "https://oauth2.sigstore.dev/auth",
"ClientID": "sigstore",
"Type": "email",
"IssuerClaim": "$.federated_claims.connector_id"
}
},
"MetaIssuers": {
Expand Down

0 comments on commit 886c468

Please sign in to comment.