Commits on Source (2)
-
Fabian Seidl authored
See merge request !270
-
Malte Bauch authored
The containerlab topology does now contain two additional centos clients. Additionally, the mgmt_ipv4 addresses for each node have been set. The topoplogy now does look like: ceos0 <- - - -> ceos1a | | | | centos1 centos2 The README file has been updated to address the new situation with the Arista cEOS image location. We've moved the image into a private repository so that it is only accessible for danet group members and everyone else has to download it from the Arista Homepage.
Showing
- .gitlab-ci.yml 1 addition, 1 deletion.gitlab-ci.yml
- .gitlab/ci/.integration-test-containerlab.yml 1 addition, 1 deletion.gitlab/ci/.integration-test-containerlab.yml
- README.md 4 additions, 0 deletionsREADME.md
- controller/Makefile 3 additions, 0 deletionscontroller/Makefile
- controller/cmd/root.go 3 additions, 0 deletionscontroller/cmd/root.go
- controller/controller.go 27 additions, 1 deletioncontroller/controller.go
- controller/northbound/server/auth.go 81 additions, 10 deletionscontroller/northbound/server/auth.go
- controller/northbound/server/auth_interceptor.go 23 additions, 3 deletionscontroller/northbound/server/auth_interceptor.go
- controller/northbound/server/auth_test.go 20 additions, 10 deletionscontroller/northbound/server/auth_test.go
- controller/northbound/server/nbi.go 2 additions, 2 deletionscontroller/northbound/server/nbi.go
- controller/rbac/jwtManager.go 66 additions, 0 deletionscontroller/rbac/jwtManager.go
- controller/rbac/user.go 25 additions, 0 deletionscontroller/rbac/user.go
- controller/test/terraform/variables.tf 2 additions, 2 deletionscontroller/test/terraform/variables.tf
- go.mod 1 addition, 0 deletionsgo.mod
- go.sum 2 additions, 0 deletionsgo.sum
- gosdn.clab.yaml 24 additions, 3 deletionsgosdn.clab.yaml
controller/rbac/jwtManager.go
0 → 100644
controller/rbac/user.go
0 → 100644
... | ... | @@ -45,6 +45,7 @@ require ( |
github.com/docker/go-units v0.4.0 // indirect | ||
github.com/fsnotify/fsnotify v1.5.1 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang-jwt/jwt v3.2.2+incompatible | ||
github.com/golang/glog v1.0.0 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
... | ... |
... | ... | @@ -457,6 +457,8 @@ github.com/gogo/protobuf v1.3.0/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXP |
github.com/gogo/protobuf v1.3.1/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= | ||
github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= | ||
github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= | ||
github.com/golang-jwt/jwt v3.2.2+incompatible h1:IfV12K8xAKAnZqdXVzCZ+TOjboZ2keLg81eXfW3O+oY= | ||
github.com/golang-jwt/jwt v3.2.2+incompatible/go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I= | ||
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= | ||
github.com/golang/glog v0.0.0-20210429001901-424d2337a529/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= | ||
github.com/golang/glog v1.0.0 h1:nfP3RFugxnNRyKgeWd4oI1nYvXpxrx8ck8ZrcizshdQ= | ||
... | ... |