diff --git a/.github/workflows/.github-ci.yaml b/.github/workflows/.github-ci.yaml index c4aef4a..7fce44c 100644 --- a/.github/workflows/.github-ci.yaml +++ b/.github/workflows/.github-ci.yaml @@ -6,7 +6,7 @@ on: jobs: build: - runs-on: ubuntu-22.04 + runs-on: ubuntu-host steps: - @@ -33,21 +33,10 @@ jobs: registry: ${{ steps.repository.outputs.registry }} username: "${{ secrets.PACKAGES_USER }}" password: "${{ secrets.PACKAGES_TOKEN }}" - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - with: - buildkitd-flags: '--allow-insecure-entitlement network.host' - driver-opts: network=host - name: Build and push uses: docker/build-push-action@v6 with: push: true - allow: network.host - network: host platforms: linux/amd64,linux/arm64 tags: ${{ steps.docker.outputs.tags }} diff --git a/edge.REST b/edge.REST deleted file mode 100644 index 6e009d7..0000000 --- a/edge.REST +++ /dev/null @@ -1,87 +0,0 @@ -# username is the email - -POST https://hub.apps.edge.platform.mg3.mdb.osc.live/api/v1/login HTTP/1.1 -content-type: application/json - -{ - "password": "", - "username": "" -} - -### - -POST https://hub.apps.edge.platform.mg3.mdb.osc.live/api/v1/auth/org/create HTTP/1.1 -Authorization: Bearer 123 -content-type: application/json - -{ - "Address": "edp-developer-framework address", - "Name": "edp-developer-framework", - "Phone": "01234567890", - "Type": "developer" -} - -### - -POST https://hub.apps.edge.platform.mg3.mdb.osc.live/api/v1/auth/org/show HTTP/1.1 -Authorization: Bearer 123 - -### - -POST https://hub.apps.edge.platform.mg3.mdb.osc.live/api/v1/auth/user/show HTTP/1.1 -Authorization: Bearer 123 - -### - -POST https://hub.apps.edge.platform.mg3.mdb.osc.live/api/v1/auth/ctrl/ShowApp HTTP/1.1 -Authorization: Bearer 123 - -{ - "App": { - "key": { - "organization": "edp-developer-framework", - "name": "HelloWorldAuto", - "version": "1.0" - } - }, - "Region": "EU" -} - -### - -POST https://hub.apps.edge.platform.mg3.mdb.osc.live/api/v1/auth/ctrl/CreateApp HTTP/1.1 -content-type: application/json - -{ - "App": { - "key": { - "organization": "edp-developer-framework", - "name": "HelloWorldAuto", - "version": "1.0" - }, - "image_path": "edp.buildth.ing/devfw-cicd/fibonacci_pipeline:development", - "image_type": "Docker", - "access_ports": "tcp:80", - "default_flavor": { - "name": "EU.small" - }, - "deployment": "docker", - "required_outbound_connections": null - }, - "Region": "EU" -} - -### - -POST https://hub.apps.edge.platform.mg3.mdb.osc.live/api/v1/auth/ctrl/DeleteApp HTTP/1.1 - -{ - "App": { - "key": { - "organization": "edp-developer-framework", - "name": "HelloWorldAuto", - "version": "1.0" - } - }, - "Region": "EU" -}