Skip to content

Commit

Permalink
Rebranding from api designer to studio (hopefully the last bits).
Browse files Browse the repository at this point in the history
  • Loading branch information
EricWittmann committed Mar 22, 2024
1 parent bb00117 commit cd3e83a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/verify_studio_daily.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Verify Designer Deployment (3scale-dev)
name: Verify Studio Deployment (3scale-dev)

on:
workflow_dispatch:
Expand All @@ -7,8 +7,8 @@ on:

jobs:

verify-designer:
name: Verify 3scale Designer Deployment
verify-studio:
name: Verify 3scale Studio Deployment
runs-on: ubuntu-latest
if: github.repository_owner == 'apicurio'
steps:
Expand All @@ -31,11 +31,11 @@ jobs:
- name: Run e2e tests
run: |
cd repo/tests/designer
cd repo/tests/studio
npm install
npx playwright install --with-deps
export DESIGNER_URL=${{ secrets.DESIGNER_URL }}
export STUDIO_URL=${{ secrets.STUDIO_URL }}
export TEST_USERNAME=${{ secrets.TEST_USERNAME }}
export TEST_PASSWORD=${{ secrets.TEST_PASSWORD }}
npm run test
Expand All @@ -45,7 +45,7 @@ jobs:
if: always()
with:
name: playwright-report
path: repo/tests/designer/playwright-report/
path: repo/tests/studio/playwright-report/
retention-days: 3

- name: Google Chat Notification (Always)
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ deploy DEV versions of our Apicurio applications.

## Applications

- [Keycloak](https://keycloak-rhaf-apicurio.apps.dev-eng-ocp4-mas.dev.3sca.net/)
- [Keycloak](https://sso.dev.apicur.io/)

- [Backstage](https://backstage-rhaf-apicurio.apps.dev-eng-ocp4-mas.dev.3sca.net/)
- [Backstage](https://backstage.dev.apicur.io/)

- [Apicurio Registry](https://apicurio-registry-ui-rhaf-apicurio.apps.dev-eng-ocp4-mas.dev.3sca.net/)
- [Apicurio Registry](https://registry.dev.apicur.io/)

- [Apicurio Designer](https://apicurio-designer-ui-rhaf-apicurio.apps.dev-eng-ocp4-mas.dev.3sca.net/)
- [Apicurio Studio](https://studio.dev.apicur.io/)

# Cluster and Namespace

Expand Down Expand Up @@ -259,16 +259,16 @@ spec:
# Automatic Deployments
The Registry and Designer applications are each configured to automatically deploy the latest snapshot
The Registry and Studio applications are each configured to automatically deploy the latest snapshot
version whenever that version is built. This is accomplished through GitHub workflows configured in
the following locations:
* [apicurio-registry/.github/workflows/verify.yaml](https://github.com/Apicurio/apicurio-registry/blob/main/.github/workflows/verify.yaml)
* [apicurio-api-designer/.github/workflows/verify.yaml](https://github.com/Apicurio/apicurio-api-designer/blob/main/.github/workflows/verify.yaml)
* [apicurio-studio/.github/workflows/verify.yaml](https://github.com/Apicurio/apicurio-studio/blob/main/.github/workflows/verify.yaml)
* [apicurio-3scale-gitops/.github/workflows/deploy_latest_registry.yml](https://github.com/Apicurio/apicurio-3scale-gitops/blob/main/.github/workflows/deploy_latest_registry.yml)
* [apicurio-3scale-gitops/.github/workflows/deploy_latest_designer.yml](https://github.com/Apicurio/apicurio-3scale-gitops/blob/main/.github/workflows/deploy_latest_designer.yml)
* [apicurio-3scale-gitops/.github/workflows/deploy_latest_studio.yml](https://github.com/Apicurio/apicurio-3scale-gitops/blob/main/.github/workflows/deploy_latest_studio.yml)
Whenever a change is made to `main` for either apicurio-registry or apicurio-api-designer, the
Whenever a change is made to `main` for either apicurio-registry or apicurio-studio, the
standard Verify workflow is run. That workflow builds and tests the software, and then it
builds and pushes docker containers tagged with `latest-snapshot`. Each of those workflows
has a job called `trigger-3scale-deploy` which will trigger the appropriate `deploy_latest_*.yaml`
Expand Down

0 comments on commit cd3e83a

Please sign in to comment.