Unverified Commit 75692f01 authored by Kevin Di Lallo's avatar Kevin Di Lallo Committed by GitHub
Browse files

Merge pull request #19 from dilallkx/kd_na648_ext_services

External Services
parents 89f066c2 1c3541bc
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
@@ -88,6 +88,20 @@ spec:
  - port: {{.port}}
    targetPort: {{.targetPort}}
    protocol: {{.protocol}}
{{if .mesvcname}}
---
kind: Service
apiVersion: v1
metadata:
  name: {{.mesvcname}}
  namespace: default
spec:
  type: ClusterIP
  ports:
  - port: {{.port}}
    targetPort: {{.targetPort}}
    protocol: {{.protocol}}
{{end}}
{{- end}}
{{- end}}

+3 −2
Original line number Diff line number Diff line
@@ -103,8 +103,9 @@ external:
    {{- end}}
  egressservicemap:
    {{- range .External.EgressServiceMap}}
    - ip: {{.IP}}
      name: {{.Name}}
    - name: {{.Name}}
      mesvcname: {{.MeSvcName}}
      ip: {{.IP}}
      port: {{.Port}}
      targetPort: {{.Port}}
      protocol: {{.Protocol}}
+1 −1
Original line number Diff line number Diff line
@@ -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: 0.0.1
- Build date: 2019-08-02T11:00:50.978-04:00
- Build date: 2019-09-09T13:29:42.646-04:00


### Running the server
+62 −1578

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Diff line number Diff line
@@ -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: 2019-08-02T11:00:36.885-04:00
- Build date: 2019-09-09T13:29:34.577-04:00


### Running the server
Loading