Commit 302fbcda authored by Ikram ul Haq's avatar Ikram ul Haq
Browse files

bug fix: federation API, frontend warnings, and repo configs

parent 3d15523e
Loading
Loading
Loading
Loading
+46 −46
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@ repo:
    # platform ingress configuration
    ingress:
      # host name
      host: 172.30.225.7
      host: try-mec.etsi.org
      # enable https only (redirect http requests to https port)
      https-only: false
      # bind to host ports (true) or node ports (false)
@@ -48,7 +48,7 @@ repo:
      # https config
      https-port: 443
      # certificate authority (none|self-signed|lets-encrypt) default: none
      ca: self-signed
      ca: lets-encrypt
      # lets-encrypt production server (true) or staging server (false)
      le-server-prod: true

@@ -75,11 +75,11 @@ repo:
        # device polling url
        poll-url: https://github.com/login/oauth/access_token
        # authorization url
        auth-url: https://github.com/login/device/code
        auth-url: https://github.com/login/oauth/authorize
        # access token url
        token-url: https://github.com/login/oauth/access_token
        # OAuth redirect URI
        redirect-uri: https://mec-platform2.etsi.org/platform-ctrl/v1/authorize
        redirect-uri: https://try-mec.etsi.org/platform-ctrl/v1/authorize
        # OAuth k8s secret (data: client-id, secret)
        secret: meep-oauth-github
      # GitLab OAuth provider config
@@ -380,7 +380,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-dai: charts/meep-dai
          meep-tm: charts/meep-tm
          meep-wais: charts/meep-wais
          meep-ams: charts/meep-ams
@@ -836,42 +836,42 @@ repo:
        docker-data:
          # location of entry script
          'entrypoint.sh': go-apps/meep-tm/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: false #true
#        # enable meepctl dockerize
#        dockerize: false #true
#        # enable meepctl deploy/delete
#        deploy: false #true
#        # supports code coverage measurement when built in codecov mode
#        codecov: true
#        # supports onboarded device application instantiation
#        onboardedapp: 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-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 onboarded device application instantiation
        onboardedapp: 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
@@ -1288,11 +1288,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-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
+5 −5
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@ externalDocs:
  description: "ETSI GS MEC 040 Federation enablement API, v3.2.1"
  url: https://www.etsi.org/deliver/etsi_gs/MEC/001_099/040/03.02.01_60/gs_MEC040v030201p.pdf
servers:
- url: https://localhost/sandboxname/sandboxname/sandboxname/sandboxname/fed_enablement/v1
- url: https://localhost/sandboxname/fed_enablement/v1
tags:
- name: systemInfo
- name: subscription
@@ -119,7 +119,7 @@ paths:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/fed_resources_systems_body'
              $ref: '#/components/schemas/SystemInfo'
        required: true
      responses:
        "201":
@@ -293,7 +293,7 @@ paths:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/systems_systemId_body'
              $ref: '#/components/schemas/SystemInfoUpdate'
        required: true
      responses:
        "200":
@@ -1089,8 +1089,8 @@ components:
      description: The expiration time of the subscription determined by the MEC Federation
        Enablement Service.
      example:
        seconds: 0
        nanoSeconds: 6
        seconds: 100
        nanoSeconds: 1000000
    links:
      title: links
      required:
+3 −3

File changed.

Contains only whitespace changes.