Skip to content

Commit

Permalink
Merge pull request #833 from bobcallaway/prober_grpc
Browse files Browse the repository at this point in the history
specify grpc endpoint in sigstore-prober chart
  • Loading branch information
bobcallaway authored Sep 8, 2024
2 parents 6136454 + d8852d6 commit b45eef7
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/sigstore-prober/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Sigstore API Endpoint Prober

type: application

version: 0.0.27
version: 0.0.28
appVersion: 0.7.8


Expand Down
3 changes: 2 additions & 1 deletion charts/sigstore-prober/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# sigstore-prober

![Version: 0.0.27](https://img.shields.io/badge/Version-0.0.27-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.7.8](https://img.shields.io/badge/AppVersion-0.7.8-informational?style=flat-square)
![Version: 0.0.28](https://img.shields.io/badge/Version-0.0.28-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.7.8](https://img.shields.io/badge/AppVersion-0.7.8-informational?style=flat-square)

Sigstore API Endpoint Prober

Expand All @@ -24,6 +24,7 @@ Sigstore API Endpoint Prober
| serviceAccount.create | bool | `false` | |
| serviceAccount.name | string | `"default"` | |
| spec.args.frequency | int | `10` | |
| spec.args.fulcioGrpcHost | string | `"fulcio.sigstore.dev"` | |
| spec.args.fulcioHost | string | `"https://fulcio.sigstore.dev"` | |
| spec.args.fulcioRequests | list | `[]` | |
| spec.args.rekorHost | string | `"https://rekor.sigstore.dev"` | |
Expand Down
3 changes: 3 additions & 0 deletions charts/sigstore-prober/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ Create args for sigstore prober components
{{- if .Values.spec.args.fulcioHost }}
- "-fulcio-url={{ .Values.spec.args.fulcioHost }}"
{{- end }}
{{- if .Values.spec.args.fulcioGrpcHost }}
- "-fulcio-grpc-url={{ .Values.spec.args.fulcioGrpcHost }}"
{{- end }}
{{- if .Values.spec.args.writeProber }}
- "-write-prober={{ .Values.spec.args.writeProber }}"
{{- end }}
Expand Down
3 changes: 3 additions & 0 deletions charts/sigstore-prober/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@
"fulcioHost": {
"type": "string"
},
"fulcioGrpcHost": {
"type": "string"
},
"fulcioRequests": {
"type": "array"
},
Expand Down
1 change: 1 addition & 0 deletions charts/sigstore-prober/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ spec:
cpu: "200m"
args:
fulcioHost: https://fulcio.sigstore.dev
fulcioGrpcHost: fulcio.sigstore.dev
rekorHost: https://rekor.sigstore.dev
frequency: 10
writeProber: false
Expand Down

0 comments on commit b45eef7

Please sign in to comment.