@@ -224,6 +224,12 @@ jobs:
224224 name : ${{ inputs.artifact }}
225225 path : /tmp
226226
227+ - name : start minikube
228+ uses : trustification/trustify-operator/.github/actions/start-minikube@release/0.3.z
229+ if : " ${{ startsWith(inputs.operator_branch, 'release/0.3.z') }}"
230+ with :
231+ memory : ' max'
232+ cpus : ' max'
227233 - name : start minikube
228234 uses : trustification/trustify-operator/.github/actions/start-minikube@release/0.2.z
229235 if : " ${{ startsWith(inputs.operator_branch, 'release/0.2.z') }}"
@@ -264,6 +270,12 @@ jobs:
264270 echo "UI_IMAGE=${UI_IMAGE}" >>"$GITHUB_ENV"
265271 echo "SERVER_IMAGE=${SERVER_IMAGE}" >>"$GITHUB_ENV"
266272 echo "SERVER_DB_IMAGE=${SERVER_DB_IMAGE}" >>"$GITHUB_ENV"
273+ - name : install trustify
274+ uses : trustification/trustify-operator/.github/actions/install-trustify@release/0.3.z
275+ if : " ${{ inputs.operator_branch == 'release/0.3.z'}}"
276+ with :
277+ operator-bundle-image : ${{ inputs.operator_bundle || env.operator_bundle }}
278+ trustify-cr : ' {"kind":"Trustify","apiVersion":"org.trustify/v1alpha1","metadata":{"name":"myapp"},"spec":{"uiImage":${{ env.UI_IMAGE }},"serverImage":${{ env.SERVER_IMAGE }},"dbImage":${{ env.SERVER_DB_IMAGE }},"imagePullPolicy":"IfNotPresent"}}'
267279 - name : install trustify
268280 uses : trustification/trustify-operator/.github/actions/install-trustify@release/0.2.z
269281 if : " ${{ inputs.operator_branch == 'release/0.2.z'}}"
@@ -351,6 +363,12 @@ jobs:
351363 name : ${{ inputs.artifact }}
352364 path : /tmp
353365
366+ - name : start minikube
367+ uses : trustification/trustify-operator/.github/actions/start-minikube@release/0.3.z
368+ if : " ${{ startsWith(inputs.operator_branch, 'release/0.3.z') }}"
369+ with :
370+ memory : ' max'
371+ cpus : ' max'
354372 - name : start minikube
355373 uses : trustification/trustify-operator/.github/actions/start-minikube@release/0.2.z
356374 if : " ${{ startsWith(inputs.operator_branch, 'release/0.2.z') }}"
@@ -391,6 +409,12 @@ jobs:
391409 echo "UI_IMAGE=${UI_IMAGE}" >>"$GITHUB_ENV"
392410 echo "SERVER_IMAGE=${SERVER_IMAGE}" >>"$GITHUB_ENV"
393411 echo "SERVER_DB_IMAGE=${SERVER_DB_IMAGE}" >>"$GITHUB_ENV"
412+ - name : install trustify
413+ uses : trustification/trustify-operator/.github/actions/install-trustify@release/0.3.z
414+ if : " ${{ inputs.operator_branch == 'release/0.3.z'}}"
415+ with :
416+ operator-bundle-image : ${{ inputs.operator_bundle || env.operator_bundle }}
417+ trustify-cr : ' {"kind":"Trustify","apiVersion":"org.trustify/v1alpha1","metadata":{"name":"myapp"},"spec":{"uiImage":${{ env.UI_IMAGE }},"serverImage":${{ env.SERVER_IMAGE }},"dbImage":${{ env.SERVER_DB_IMAGE }},"imagePullPolicy":"IfNotPresent"}}'
394418 - name : install trustify
395419 uses : trustification/trustify-operator/.github/actions/install-trustify@release/0.2.z
396420 if : " ${{ inputs.operator_branch == 'release/0.2.z'}}"
0 commit comments