teleport/lib/config
Andrew Lytvynov fd2959260e
Add kube_listen_addr to proxy_service (#4616)
This is a shorthand for the larger kubernetes section:
```
proxy_service:
  kube_listen_addr: "0.0.0.0:3026"
```
if equivalent to:
```
proxy_service:
  kubernetes:
    enabled: yes
    listen_addr: "0.0.0.0:3026"
```

This shorthand is meant to be used with the new `kubernetes_service`:
https://github.com/gravitational/teleport/pull/4455
It reduces confusion when both `proxy_service` and `kubernetes_service`
are configured in the same process.
2020-10-28 21:52:08 +00:00
..
configuration.go Add kube_listen_addr to proxy_service (#4616) 2020-10-28 21:52:08 +00:00
configuration_test.go Add kube_listen_addr to proxy_service (#4616) 2020-10-28 21:52:08 +00:00
fileconf.go Add kube_listen_addr to proxy_service (#4616) 2020-10-28 21:52:08 +00:00
fileconf_test.go Cleanup of dead code. 2019-07-02 18:01:44 -07:00
testdata_test.go Rename references 2020-06-25 10:38:49 -03:00