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

Create HNS endpoint as part of hybrid-overlay-node on Windows #4356

Open
sebsoto opened this issue May 14, 2024 · 1 comment
Open

Create HNS endpoint as part of hybrid-overlay-node on Windows #4356

sebsoto opened this issue May 14, 2024 · 1 comment
Labels
kind/feature All issues/PRs that are new features

Comments

@sebsoto
Copy link
Contributor

sebsoto commented May 14, 2024

What would you like to be added?

hybrid-overlay-node should create an endpoint for the HNS network it maintains.

Why is this needed?

In order to make use of the network a user has to create an endpoint for the HNS network which hybrid-overlay-node creates.

# Create HNS endpoint if it doesn't exist
$endpoint = Invoke-HNSRequest GET endpoints | where { $_.Name -eq 'VIPEndpoint'}
if( $endpoint -eq $null) {
    $endpoint = New-HnsEndpoint -NetworkId $hns_network.ID -Name "VIPEndpoint"
    Attach-HNSHostEndpoint -EndpointID $endpoint.ID -CompartmentID 1
}

By moving this functionality into hybrid-overlay-node this removes this step for the user.

@sebsoto sebsoto added the kind/feature All issues/PRs that are new features label May 14, 2024
@tssurya
Copy link
Member

tssurya commented May 14, 2024

@JacobTanenbaum : can you help triage this please?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/feature All issues/PRs that are new features
Projects
None yet
Development

No branches or pull requests

2 participants