Add functional test for java-spiffe-helper #39
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
- pull_request | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
env: | |
KEYSTORE_COMMON_NAME: keystore-${{ github.sha }} | |
TRUSTSTORE_COMMON_NAME: truststore-${{ github.sha }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: docker/setup-qemu-action@v3 | |
- uses: docker/setup-buildx-action@v3 | |
- uses: docker/build-push-action@v5 | |
with: | |
context: . | |
tags: java-spiffe-helper:test | |
load: true | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- uses: helm/kind-action@v1 | |
with: | |
cluster_name: kind | |
- run: kind load docker-image java-spiffe-helper:test --name kind | |
- run: helm upgrade --install -n spire-server spire-crds spire-crds --repo https://spiffe.github.io/helm-charts-hardened/ --create-namespace | |
- run: | | |
helm upgrade --install -n spire-server spire spire \ | |
--repo https://spiffe.github.io/helm-charts-hardened/ \ | |
-f .github/tests/spire-values.yaml \ | |
--set spire-server.ca_subject.common_name="$TRUSTSTORE_COMMON_NAME" \ | |
--set spire-server.controllerManager.identities.clusterSPIFFEIDs.java-spiffe-helper.dnsNameTemplates[0]="$KEYSTORE_COMMON_NAME" | |
- run: kubectl apply -f .github/tests/java-spiffe-helper.yaml | |
- run: kubectl wait pod/java-spiffe-helper --for condition=Ready --timeout=90s | |
- if: ${{ failure() }} | |
run: kubectl logs pod/java-spiffe-helper > java-spiffe-helper.log | |
- if: ${{ failure() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: logs | |
path: java-spiffe-helper.log | |
- if: ${{ failure() }} | |
run: kubectl describe pod/java-spiffe-helper | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- run: kubectl cp java-spiffe-helper:/tmp/keystore.p12 keystore.p12 | |
- run: kubectl cp java-spiffe-helper:/tmp/truststore.p12 truststore.p12 | |
- run: keytool -v -list -keystore keystore.p12 -storepass password | grep "CN=${{ env.KEYSTORE_COMMON_NAME }}" | |
- if: ${{ failure() }} | |
run: keytool -v -list -keystore keystore.p12 -storepass password | |
- run: keytool -v -list -keystore truststore.p12 -storepass password | grep "CN=${{ env.TRUSTSTORE_COMMON_NAME }}" | |
- if: ${{ failure() }} | |
run: keytool -v -list -keystore truststore.p12 -storepass password |