Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

kube: add kube_public_addr config field to proxy_service #5611

Merged
merged 2 commits into from
Feb 18, 2021

Commits on Feb 18, 2021

  1. kube: add kube_public_addr config field to proxy_service

    With the introduction of `kube_listen_addr`, some users are confused on
    how to set a public address for k8s access that's different from
    `public_addr` of the proxy. `kube_public_addr` removes that confusion
    and more closely resembles the other proxy endpoints.
    
    This config:
    
    ```yaml
    proxy_service:
      kube_listen_addr: 0.0.0.0:3026
      kube_public_addr: kube.example.com:3026
    ```
    
    translates to the old format:
    
    ```yaml
    proxy_service:
      kubernetes:
        enabled: yes
        listen_addr: 0.0.0.0:3026
        public_addr: kube.example.com:3026
    ```
    Andrew Lytvynov committed Feb 18, 2021
    Configuration menu
    Copy the full SHA
    d9a94bb View commit details
    Browse the repository at this point in the history
  2. Merge branch 'master' into andrew/kube_public_addr

    Andrew Lytvynov authored Feb 18, 2021
    Configuration menu
    Copy the full SHA
    5b250f1 View commit details
    Browse the repository at this point in the history