@@ -292,7 +292,7 @@ jobs:
292
292
293
293
- name : Add service hosts to /etc/hosts
294
294
run : |
295
- sudo echo "127.0.0.1 fulcio-server.local tuf.local rekor-server.local keycloak-internal.keycloak-system.svc rekor-search-ui.local cli-server.local" | sudo tee -a /etc/hosts
295
+ sudo echo "127.0.0.1 fulcio-server.local tuf.local rekor-server.local keycloak-internal.keycloak-system.svc rekor-search-ui.local cli-server.local tsa-server.local " | sudo tee -a /etc/hosts
296
296
- name : Install cosign
297
297
run : go install github.com/sigstore/cosign/v2/cmd/cosign@v2.2.4
298
298
@@ -371,7 +371,7 @@ jobs:
371
371
kubectl create ns ${{ env.TEST_NAMESPACE }}
372
372
kubectl create secret generic redhat-registry -n ${{ env.TEST_NAMESPACE }} --from-file=.dockerconfigjson=/tmp/config.json --type=kubernetes.io/dockerconfigjson
373
373
kubectl patch serviceaccount default --type=merge -p '{"imagePullSecrets": [{"name":"redhat-registry"}]}' -n ${{ env.TEST_NAMESPACE }}
374
- for NAME in "fulcio" "ctlog" "trillian" "rekor" "tuf"
374
+ for NAME in "fulcio" "ctlog" "trillian" "rekor" "tuf" "tsa"
375
375
do
376
376
echo """
377
377
apiVersion: v1
@@ -400,7 +400,7 @@ jobs:
400
400
401
401
- name : Until shell script to wait for deployment to be created
402
402
run : |
403
- for i in trillian fulcio rekor tuf ctlog; do
403
+ for i in trillian fulcio rekor tuf ctlog timestampAuthority ; do
404
404
until [ ! -z "$(kubectl get $i -n ${{ env.TEST_NAMESPACE }} 2>/dev/null)" ]
405
405
do
406
406
echo "Waiting for $i to be created."
@@ -416,6 +416,7 @@ jobs:
416
416
kubectl wait --for=condition=ready rekor/securesign-sample -n ${{ env.TEST_NAMESPACE }} --timeout=5m
417
417
kubectl wait --for=condition=ready ctlog/securesign-sample -n ${{ env.TEST_NAMESPACE }} --timeout=5m
418
418
kubectl wait --for=condition=ready tuf/securesign-sample -n ${{ env.TEST_NAMESPACE }} --timeout=5m
419
+ kubectl wait --for=condition=ready timestampAuthority/securesign-sample -n ${{ env.TEST_NAMESPACE }} --timeout=5m
419
420
420
421
- name : Test deployments are ready
421
422
run : |
@@ -428,6 +429,7 @@ jobs:
428
429
kubectl wait --for=condition=available deployment/rekor-search-ui -n ${{ env.TEST_NAMESPACE }}
429
430
kubectl wait --for=condition=available deployment/tuf -n ${{ env.TEST_NAMESPACE }}
430
431
kubectl wait --for=condition=available deployment/ctlog -n ${{ env.TEST_NAMESPACE }}
432
+ kubectl wait --for=condition=available deployment/tsa-server -n ${{ env.TEST_NAMESPACE }}
431
433
432
434
- name : Archive test artifacts
433
435
uses : actions/upload-artifact@v4
0 commit comments