Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
milesstoetzner committed Mar 12, 2024
1 parent 97b4adc commit f999fb1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/actions/vintner-test/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,4 @@ runs:
curl --fail-with-body https://${MINIKUBE_IP}:${PORT}
env:
EXAMPLE: ${{ inputs.example }}
PORT: ${{ inputs.port }}
12 changes: 8 additions & 4 deletions .github/workflows/case-study-unfurl-technology.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
env:
ORCHESTRATOR: unfurl
EXAMPLE: unfurl-technology-conditional-quality-maintenance
EXAMPLE_OVERRIDE: unfurl-technology
ENV: K8S
PORT: 30080
steps:
Expand Down Expand Up @@ -63,7 +64,8 @@ jobs:
run: |
cat << EOF > /tmp/deployment-inputs.yaml
database_password: ${DB_PASSWORD}
k8s_api_port: $(minikube ip)
k8s_api_address: $(minikube ip)
k8s_api_port: '8843'
k8s_ca_cert_file: /home/runner/.minikube/ca.crt
k8s_client_cert_file: /home/runner/.minikube/profiles/minikube/client.crt
k8s_client_key_file: /home/runner/.minikube/profiles/minikube/client.key
Expand All @@ -80,7 +82,7 @@ jobs:
- name: (VINTNER) Test application
uses: ./.github/actions/vintner-test
with:
example: ${{ env.EXAMPLE }}
example: ${{ env.EXAMPLE_OVERRIDE }}
env: ${{ env.ENV }}
port: ${{ env.PORT }}

Expand All @@ -101,6 +103,7 @@ jobs:
env:
ORCHESTRATOR: unfurl
EXAMPLE: unfurl-technology-conditional-quality-maintenance
EXAMPLE_OVERRIDE: unfurl-technology
ENV: GCP
PORT: 80
steps:
Expand Down Expand Up @@ -164,7 +167,7 @@ jobs:
- name: (VINTNER) Test application
uses: ./.github/actions/vintner-test
with:
example: ${{ env.EXAMPLE }}
example: ${{ env.EXAMPLE_OVERRIDE }}
env: ${{ env.ENV }}
port: ${{ env.PORT }}

Expand All @@ -184,6 +187,7 @@ jobs:
env:
ORCHESTRATOR: unfurl
EXAMPLE: unfurl-technology-conditional-quality-maintenance
EXAMPLE_OVERRIDE: unfurl-technology
ENV: OS
PORT: 80
steps:
Expand Down Expand Up @@ -264,7 +268,7 @@ jobs:
- name: (VINTNER) Test application
uses: ./.github/actions/vintner-test
with:
example: ${{ env.EXAMPLE }}
example: ${{ env.EXAMPLE_OVERRIDE }}
env: ${{ env.ENV }}
port: ${{ env.PORT }}

Expand Down

0 comments on commit f999fb1

Please sign in to comment.