Commit 1c5d7807 authored by M. Rehan Abbasi's avatar M. Rehan Abbasi
Browse files

add meep-vis service

parent 6645de93
Loading
Loading
Loading
Loading
+42 −3
Original line number Diff line number Diff line
@@ -185,7 +185,6 @@ repo:
  #  Core Subsystem
  #------------------------------
  core:

    # Go Applications
    go-apps:
      meep-auth-svc:
@@ -285,6 +284,7 @@ repo:
          - meep-sandbox-ctrl
          # - meep-tc-engine
          # - meep-app-enablement
          # - meep-vis
        # location of API specifications
        api:
          - name: 'AdvantEDGE Monitoring Engine REST API'
@@ -363,6 +363,7 @@ repo:
          meep-tc-engine: charts/meep-tc-engine
          meep-app-enablement: charts/meep-app-enablement
          meep-virt-chart-templates: charts/meep-virt-chart-templates
          meep-vis: charts/meep-vis
        # list of sandbox specific pods
        sandbox-pods:
          - meep-gis-engine
@@ -375,6 +376,7 @@ repo:
          - meep-sandbox-ctrl
          # - meep-tc-engine
          # - meep-app-enablement
          # - meep-vis
      meep-webhook:
        # location of source code
        src: go-apps/meep-webhook
@@ -427,7 +429,6 @@ repo:
  #  Sandbox Subsystem
  #------------------------------
  sandbox:

    # Go Applications
    go-apps:
      meep-ams:
@@ -763,6 +764,40 @@ repo:
        docker-data:
          # location of entry script
          'entrypoint.sh': go-apps/meep-wais/entrypoint.sh
      meep-vis:
        # location of source code
        src: go-apps/meep-vis
        # location of binary
        bin: bin/meep-vis
        # location of deployment chart
        chart: charts/meep-vis
        # user supplied value file located @ .meep/user/values (use below file name)
        chart-user-values: meep-vis.yaml
        # extra build flags
        build-flags:
          - -mod=vendor
        # enable meepctl build
        build: true
        # enable meepctl dockerize
        dockerize: true
        # enable meepctl deploy/delete
        deploy: true
        # supports code coverage measurement when built in codecov mode
        codecov: true
        # supports linting
        lint: true
        # location of API specifications
        api:
          - name: 'AdvantEDGE V2X Information REST API'
            file: go-apps/meep-vis/api/swagger.yaml
        # location of user supplied API specifications
        user-api:
          - name: 'V2X Information Service REST API'
            file: config/api/vis-api.yaml
        # resources available to docker container image
        docker-data:
          # location of entry script
          'entrypoint.sh': go-apps/meep-vis/entrypoint.sh

  #------------------------------
  #  Dependencies
@@ -927,7 +962,6 @@ repo:
  #  Packages
  #------------------------------
  packages:

    # Go Packages
    go-packages:
      meep-ams-client:
@@ -1095,6 +1129,11 @@ repo:
        src: go-packages/meep-wais-client
        # supports linting
        lint: false
      meep-vis-client:
        # location of source code
        src: go-packages/meep-vis-client
        # supports linting
        lint: false
      meep-watchdog:
        # location of source code
        src: go-packages/meep-watchdog
+1701 −0

File added.

Preview size limit exceeded, changes collapsed.

+29 −3
Original line number Diff line number Diff line
@@ -892,3 +892,29 @@ services:
        path: '/'
        method: 'GET'
        mode: 'block'
  #------------------------------
  #  V2XI Service (Sbox)
  #------------------------------
  - name: 'meep-vis'
    path: '/vis/v2'
    sbox: true
    default:
      mode: 'allow'
    fileservers:
      - name: 'Api'
        path: '/api'
        mode: 'verify'
        roles:
          admin: 'allow'
          user: 'block'
      - name: 'UserApi'
        path: '/user-api'
        mode: 'verify'
        roles:
          admin: 'allow'
          user: 'allow'
    endpoints:
      - name: 'Index'
        path: '/'
        method: 'GET'
        mode: 'block'