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

feat: add dns service for vl3 networks #137

Merged
merged 1 commit into from
May 12, 2022

Conversation

denis-tingaikin
Copy link
Member

@denis-tingaikin denis-tingaikin commented May 10, 2022

Signed-off-by: denis-tingaikin <[email protected]>
Comment on lines +20 to +41
package dns;
option go_package = "github.com/networkservicemesh/api/pkg/api/dns";

enum Type {
UNDEFINED = 0;
ASSIGN = 1;
UNASSIGN = 2;
}

message DNSRequest {
Type type = 1;
map<string, string> labels = 2;
string ip = 3;
}

message DNSResponse {
string name = 1;
}

service DNS {
rpc ManageNames (stream DNSRequest) returns (stream DNSResponse);
}
Copy link
Member Author

@denis-tingaikin denis-tingaikin May 10, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@edwarnicke Could you review this?

message DNSRequest {
Type type = 1;
map<string, string> labels = 2;
string ip = 3;
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since NSM supports multiple ips, I guess we should change this to

Suggested change
string ip = 3;
repeated string ip = 3;

@edwarnicke Thoughts?

@denis-tingaikin denis-tingaikin marked this pull request as draft May 10, 2022 21:06
@denis-tingaikin denis-tingaikin marked this pull request as ready for review May 12, 2022 01:46
@edwarnicke edwarnicke merged commit c57fd26 into networkservicemesh:main May 12, 2022
nsmbot pushed a commit to networkservicemesh/sdk that referenced this pull request May 12, 2022
…i@main

PR link: networkservicemesh/api#137

Commit: c57fd26
Author: Denis Tingaikin
Date: 2022-05-12 05:05:24 +0300
Message:
  - add dns service for vl3 networks (#137)
Signed-off-by: NSMBot <[email protected]>
denis-tingaikin added a commit to denis-tingaikin/api that referenced this pull request May 30, 2022
edwarnicke pushed a commit that referenced this pull request May 30, 2022
* Revert "qfix: add missed dnsconfigs (#141)"

This reverts commit edaa6f4.

Signed-off-by: denis-tingaikin <[email protected]>

* Revert "add dns service for vl3 networks (#137)"

This reverts commit c57fd26.

Signed-off-by: denis-tingaikin <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants