Skip to content

Commit

Permalink
enable conformance setting in c11n apply
Browse files Browse the repository at this point in the history
  • Loading branch information
elchead committed Jul 24, 2024
1 parent 4b6953f commit 236605a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/actions/constellation_create/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ inputs:
encryptionSecret:
description: "The secret to use for encrypting the artifact."
required: true
conformance:
description: "Enables the conformance mode for Kubernetes conformance tests."
default: false

outputs:
kubeconfig:
Expand Down Expand Up @@ -170,7 +173,11 @@ runs:
- name: Constellation create (CLI)
shell: bash
run: |
constellation apply --skip-phases=init,attestationconfig,certsans,helm,image,k8s -y --debug --tf-log=DEBUG
CMD="constellation apply --skip-phases=init,attestationconfig,certsans,helm,image,k8s -y --debug --tf-log=DEBUG"
if [[ "${{ inputs.conformance }}" == "true" ]]; then
CMD+=" --conformance"
fi
$CMD
- name: Cdbg deploy
if: inputs.isDebugImage == 'true'
Expand Down

0 comments on commit 236605a

Please sign in to comment.