Skip to content

Commit

Permalink
Bump all sigstore components. Use GODEBUG=netdns=go for fulcio. (#316)
Browse files Browse the repository at this point in the history
Signed-off-by: Ville Aikas <[email protected]>

Signed-off-by: Ville Aikas <[email protected]>
  • Loading branch information
vaikas authored Aug 23, 2022
1 parent e995aaa commit 1be83b7
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
6 changes: 4 additions & 2 deletions config/fulcio/fulcio/300-fulcio.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ spec:
# This doesn't actually use Kubernetes credentials, so don't mount them in.
automountServiceAccountToken: false
containers:
# v0.5.2
- image: gcr.io/projectsigstore/fulcio:v0.5.2
- image: gcr.io/projectsigstore/fulcio@sha256:61081295a8f75ed7537b5d1f8c7320e078dc00e4562c0bf605fbefa062c690de # v0.5.3
name: fulcio
ports:
- containerPort: 5555
Expand All @@ -42,6 +41,9 @@ spec:
secretKeyRef:
name: fulcio-secret
key: password
# Force a native go address resolution.
- name: GODEBUG
value: "netdns=go"
volumeMounts:
- name: fulcio-config
mountPath: /etc/fulcio-config
Expand Down
2 changes: 1 addition & 1 deletion config/rekor/rekor/300-rekor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
serviceAccountName: rekor
containers:
- name: rekor
image: gcr.io/projectsigstore/rekor-server@sha256:851f9d63879655156293cfe501976004ffab0093409596cf7f0f0099867d9d39 # v0.10.0
image: gcr.io/projectsigstore/rekor-server@sha256:af91aee88c6d8efb3175b441420a4c61691ec5d6a72303c8ef47750c1dfd2325 # v0.11.0
ports:
- containerPort: 3000
args: [
Expand Down
2 changes: 1 addition & 1 deletion config/trillian/trillian-log-server/300-log-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
serviceAccountName: trillian
containers:
- name: log-server
image: gcr.io/projectsigstore/trillian_log_server@sha256:f850a0defd089ea844822030c67ae05bc93c91168a7dd4aceb0b6648c39f696b
image: gcr.io/projectsigstore/trillian_log_server@sha256:04c648cccf6d631caefba5d41ae3bcb9fc6e830f845a34a230e7590cd05a6904 # v0.11.0
args: [
"--mysql_uri=$(MYSQL_USER):$(MYSQL_PASSWORD)@tcp($(DATABASE_HOSTNAME):3306)/$(DATABASE_NAME)",
"--mysql_max_idle_conns=0",
Expand Down
2 changes: 1 addition & 1 deletion config/trillian/trillian-log-signer/300-log-signer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ spec:
secretKeyRef:
name: trillian-database
key: host
image: gcr.io/projectsigstore/trillian_log_signer@sha256:fe90d523f6617974f70878918e4b31d49b2b46a86024bb2d6b01d2bbfed8edbf
image: gcr.io/projectsigstore/trillian_log_signer@sha256:2f80647c4c81621ba850b4993bdd4332a63570e775f81fe124e946e947fd29c8 # v0.11.0
ports:
- name: h2c
containerPort: 8090
1 change: 0 additions & 1 deletion hack/setup-scaffolding-from-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ kubectl apply -f "${TRILLIAN}"
echo '::endgroup::'

echo '::group:: Wait for Trillian ready'
kubectl wait --timeout 5m -n trillian-system --for=condition=Complete jobs --all
kubectl wait --timeout 2m -n trillian-system --for=condition=Ready ksvc log-server
kubectl wait --timeout 2m -n trillian-system --for=condition=Ready ksvc log-signer
echo '::endgroup::'
Expand Down
1 change: 0 additions & 1 deletion hack/setup-scaffolding.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ make ko-apply-trillian
echo '::endgroup::'

echo '::group:: Wait for Trillian ready'
kubectl wait --timeout 5m -n trillian-system --for=condition=Complete jobs --all
kubectl wait --timeout 2m -n trillian-system --for=condition=Ready ksvc log-server
kubectl wait --timeout 2m -n trillian-system --for=condition=Ready ksvc log-signer
echo '::endgroup::'
Expand Down

0 comments on commit 1be83b7

Please sign in to comment.