Commit 21f5d2ec authored by Yann Garcia's avatar Yann Garcia
Browse files

Add meep-dai microservice

parent dc1bfdd3
Loading
Loading
Loading
Loading
+42 −0
Original line number Diff line number Diff line
@@ -279,6 +279,7 @@ repo:
          - meep-metrics-engine
          # - meep-mg-manager
          # - meep-rnis
          # - meep-dai
          # - meep-wais
          # - meep-ams
          - meep-sandbox-ctrl
@@ -357,6 +358,7 @@ repo:
          meep-metrics-engine: charts/meep-metrics-engine
          meep-mg-manager: charts/meep-mg-manager
          meep-rnis: charts/meep-rnis
          meep-dai: charts/meep-dai
          meep-wais: charts/meep-wais
          meep-ams: charts/meep-ams
          meep-sandbox-ctrl: charts/meep-sandbox-ctrl
@@ -371,6 +373,7 @@ repo:
          - meep-metrics-engine
          # - meep-mg-manager
          # - meep-rnis
          # - meep-dai
          # - meep-wais
          # - meep-ams
          - meep-sandbox-ctrl
@@ -764,6 +767,40 @@ repo:
        docker-data:
          # location of entry script
          'entrypoint.sh': go-apps/meep-wais/entrypoint.sh
      meep-dai:
        # location of source code
        src: go-apps/meep-dai
        # location of binary
        bin: bin/meep-dai
        # location of deployment chart
        chart: charts/meep-dai
        # user supplied value file located @ .meep/user/values (use below file name)
        chart-user-values: meep-dai.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 Device application interface REST API'
            file: go-apps/meep-dai/api/swagger.yaml
        # location of user supplied API specifications
        user-api:
          - name: 'Device application interface REST API'
            file: config/api/dai-api.yaml
        # resources available to docker container image
        docker-data:
          # location of entry script
          'entrypoint.sh': go-apps/meep-dai/entrypoint.sh
      meep-vis:
        # location of source code
        src: go-apps/meep-vis
@@ -1126,6 +1163,11 @@ repo:
        src: go-packages/meep-users
        # supports linting
        lint: true
      meep-dai-client:
        # location of source code
        src: go-packages/meep-dai-client
        # supports linting
        lint: false
      meep-wais-client:
        # location of source code
        src: go-packages/meep-wais-client
Loading