Skip to content

Do we need to add the possibility to confgure static DNS entries? #92

@denis-tingaikin

Description

@denis-tingaikin

Description

Currently, we support DNSConfigs related to the concrete DNS servers.
https://github.com/networkservicemesh/api/blob/master/pkg/api/networkservice/connectioncontext.proto#L66-L71.

Probably it can be used to add an additional config into https://github.com/networkservicemesh/api/blob/master/pkg/api/networkservice/connectioncontext.proto#L73
That will represent static DNS entry.

message StaticEntry {
    string domain = 1;
    string ip = 2;
}
message DNSContext {
    repeated DNSConfig configs = 1;
  + repeated StaticEntry static_entries = 2;
}

It can be used to configure DNS static entries on the client-side. Probably it is useful for external applications that using DNS domains inside.

Question

Is it make sense?

Metadata

Metadata

Assignees

No one assigned

    Labels

    questionFurther information is requested

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions