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

Fix tags for coredns/envoyproxy #19134

Commits on Jun 11, 2020

  1. Fix tags for coredns/envoyproxy

    When {{ .tags }} is evaluated in the module config it not written in the correct format.
    This fixes that issue and also conditionally enables `publisher_pipeline.disable_host`
    based on whether tags contains `forwarded` to be consistent with every other module
    that allows for `var.tags` to be set (relates: elastic#13920).
    
    For example (https://play.golang.org/p/LUr-X94msd1):
    
        var.tags: [foo, bar]
    
    will be written into the config as
    
        tags: [foo bar]
    
    which is a single value array containing the string "foo bar" rather than two tags.
    andrewkroh committed Jun 11, 2020
    Configuration menu
    Copy the full SHA
    940d685 View commit details
    Browse the repository at this point in the history