[PR #69] [MERGED] Peer configuration management #2518

Closed
opened 2025-11-20 07:11:22 -05:00 by saavagebueno · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/netbirdio/netbird/pull/69
Author: @braginini
Created: 7/25/2021
Status: Merged
Merged: 7/30/2021
Merged by: @braginini

Base: mainHead: peer-configuration-management


📝 Commits (10+)

  • f5e5c5e feature: add config properties to the SyncResponse of the management gRpc service
  • f687696 fix: lint errors
  • acb9557 Merge remote-tracking branch 'origin/main' into peer-configuration-management
  • 26754f3 chore: modify management protocol according to the review notes
  • 23bdf65 fix: management proto fields sequence
  • df7d2b1 feature: add proper peer configuration to be synced
  • b92279a Merge remote-tracking branch 'origin/main' into peer-configuration-management
  • bcbd386 Merge remote-tracking branch 'origin/main' into peer-configuration-management
  • 57e8c82 chore: minor changes
  • 8c81ad8 feature: finalize peer config management

📊 Changes

14 files changed (+687 additions, -234 deletions)

View changed files

📝 management/README.md (+36 -0)
📝 management/cmd/management.go (+34 -7)
📝 management/proto/management.pb.go (+90 -102)
📝 management/proto/management.proto (+8 -9)
management/server/account.go (+119 -0)
management/server/config.go (+30 -0)
📝 management/server/file_store.go (+51 -49)
📝 management/server/management_test.go (+114 -13)
management/server/network.go (+69 -0)
📝 management/server/server.go (+94 -24)
management/server/store.go (+9 -0)
management/server/testdata/management.json (+25 -0)
📝 management/server/testdata/store.json (+8 -1)
management/store/store.go (+0 -29)

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/netbirdio/netbird/pull/69 **Author:** [@braginini](https://github.com/braginini) **Created:** 7/25/2021 **Status:** ✅ Merged **Merged:** 7/30/2021 **Merged by:** [@braginini](https://github.com/braginini) **Base:** `main` ← **Head:** `peer-configuration-management` --- ### 📝 Commits (10+) - [`f5e5c5e`](https://github.com/netbirdio/netbird/commit/f5e5c5e710d0e17ca8aa961e2b81943ab19e868b) feature: add config properties to the SyncResponse of the management gRpc service - [`f687696`](https://github.com/netbirdio/netbird/commit/f6876969ab7ce90c8e9bef7de3633cf5ad47f3cc) fix: lint errors - [`acb9557`](https://github.com/netbirdio/netbird/commit/acb95572b5918a7cd5a2950c291afc39c560b9ad) Merge remote-tracking branch 'origin/main' into peer-configuration-management - [`26754f3`](https://github.com/netbirdio/netbird/commit/26754f394826f702adaaf83188fbffc4124624eb) chore: modify management protocol according to the review notes - [`23bdf65`](https://github.com/netbirdio/netbird/commit/23bdf65aa966bea6397802c01ef7562bfb20e959) fix: management proto fields sequence - [`df7d2b1`](https://github.com/netbirdio/netbird/commit/df7d2b186ff52c07bc0918d652a9a64f40e226bc) feature: add proper peer configuration to be synced - [`b92279a`](https://github.com/netbirdio/netbird/commit/b92279a0d0ff3b33e514abedc7d8a16c6ba701c2) Merge remote-tracking branch 'origin/main' into peer-configuration-management - [`bcbd386`](https://github.com/netbirdio/netbird/commit/bcbd386dd09a4e2a3d37b6b80fd47896c1790907) Merge remote-tracking branch 'origin/main' into peer-configuration-management - [`57e8c82`](https://github.com/netbirdio/netbird/commit/57e8c8285b9240ef677e4826868168d0c4c0d137) chore: minor changes - [`8c81ad8`](https://github.com/netbirdio/netbird/commit/8c81ad8f6acafbf8b9304ce760100715153d15ac) feature: finalize peer config management ### 📊 Changes **14 files changed** (+687 additions, -234 deletions) <details> <summary>View changed files</summary> 📝 `management/README.md` (+36 -0) 📝 `management/cmd/management.go` (+34 -7) 📝 `management/proto/management.pb.go` (+90 -102) 📝 `management/proto/management.proto` (+8 -9) ➕ `management/server/account.go` (+119 -0) ➕ `management/server/config.go` (+30 -0) 📝 `management/server/file_store.go` (+51 -49) 📝 `management/server/management_test.go` (+114 -13) ➕ `management/server/network.go` (+69 -0) 📝 `management/server/server.go` (+94 -24) ➕ `management/server/store.go` (+9 -0) ➕ `management/server/testdata/management.json` (+25 -0) 📝 `management/server/testdata/store.json` (+8 -1) ➖ `management/store/store.go` (+0 -29) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
saavagebueno added the pull-request label 2025-11-20 07:11:22 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: SVI/netbird#2518