Commit dbec97e5 authored by Simon Pastor's avatar Simon Pastor
Browse files

app-mgmt renamed to app-info

parent 7f75bdc7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -30,14 +30,14 @@ ingress:
      paths:
        - /{{ .SandboxName }}/mec_app_support
        - /{{ .SandboxName }}/mec_service_mgmt
        - /{{ .SandboxName }}/mec_app_mgmt
        - /{{ .SandboxName }}/app_info
  annotations:
    kubernetes.io/ingress.class: nginx
    nginx.ingress.kubernetes.io/force-ssl-redirect: {{ .HttpsOnly }}
    nginx.ingress.kubernetes.io/configuration-snippet: |
      rewrite ^/{{ .SandboxName }}/mec_app_support(/|$)(.*)$ /mec_app_support/$2 break;
      rewrite ^/{{ .SandboxName }}/mec_service_mgmt(/|$)(.*)$ /mec_service_mgmt/$2 break;
      rewrite ^/{{ .SandboxName }}/mec_app_mgmt(/|$)(.*)$ /mec_app_mgmt/$2 break;
      rewrite ^/{{ .SandboxName }}/app_info(/|$)(.*)$ /app_info/$2 break;
    {{- if .AuthEnabled }}
    nginx.ingress.kubernetes.io/auth-url: https://$http_host/auth/v1/authenticate?svc=meep-app-enablement&sbox={{ .SandboxName }}
    {{- end }}
+9 −9
Original line number Diff line number Diff line
openapi: 3.0.2
servers:
  - url: 'https://localhost/sandboxname/mec_app_mgmt/v1'
  - url: 'https://localhost/sandboxname/app_info/v1'
info:
  title: AdvantEDGE MEC Application Management API
  title: AdvantEDGE Application Information API
  version: 1.0.0
  description: AdvantEDGE implementation to create a Application Instance information using OpenAPI. Developed as an extension to Application Enablement API.
  description: AdvantEDGE implementation to create an Application Instance information using OpenAPI. Developed as an extension to Application Enablement API.
  license:
    name: BSD-3-Clause
    url: 'https://forge.etsi.org/legal-matters'
    name: Apache 2.0
    url: 'https://github.com/InterDigitalInc/AdvantEDGE/blob/master/LICENSE'
  contact:
    email: cti_support@etsi.org
    name: InterDigital AdvantEDGE Support
    email: AdvantEDGE@InterDigital.com
externalDocs:
  description: 'ETSI GS MEC011 Application Enablement API, V2.1.1'
  url: >-
    https://www.etsi.org/deliver/etsi_gs/MEC/001_099/011/02.01.01_60/gs_MEC011v020101p.pdf
  description: GitHub Wiki
  url: 'https://github.com/InterDigitalInc/AdvantEDGE/wiki'
tags:
  - name: apps
paths:
+2 −2
Original line number Diff line number Diff line
# Go API Server for server

AdvantEDGE implementation to create a Application Instance information using OpenAPI. Developed as an extension to Application Enablement API.
AdvantEDGE implementation to create an Application Instance information using OpenAPI. Developed as an extension to Application Enablement API.

## Overview
This server was generated by the [swagger-codegen]
@@ -13,7 +13,7 @@ To see how to make this your own, look here:
[README](https://github.com/swagger-api/swagger-codegen/blob/master/README.md)

- API version: 1.0.0
- Build date: 2021-06-18T14:51:08.832-04:00[America/New_York]
- Build date: 2021-06-21T14:08:01.779-04:00[America/New_York]


### Running the server
Loading