Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision

Target

Select target project
  • danet/gosdn
1 result
Select Git revision
Show changes
Commits on Source (4)
Showing
with 6095 additions and 6268 deletions
......@@ -65,3 +65,6 @@ __debug_bin
#misc
*/mongo_backup_*.tar
# plugins
plugin-registry/plugins/
......@@ -2,7 +2,7 @@ variables:
GOSDN_IMAGE: "${CI_REGISTRY_IMAGE}:${CI_COMMIT_SHA}"
GOSDN_TESTING_IMAGE: "${CI_REGISTRY_IMAGE}:testing_${CI_COMMIT_SHA}"
CEOS_IMAGE: "${CI_PCONTAINERS_REGISTRY_IMAGE}/ceos:4.28.2F"
GOLANG_VERSION: "1.20.2"
GOLANG_VERSION: "1.20.3"
workflow:
rules:
......
variables:
GOLANG_VERSION: "1.20.1"
GOLANG_VERSION: "1.20.3"
code-quality:
image: golangci/golangci-lint:v1.51.2-alpine
stage: analyze
......
build-mkdocs:
image: ${CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX}/python:3.9.15-slim-bullseye
image: ${CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX}/python:3.11.3-slim-bullseye
stage: build
before_script:
- pip install mkdocs-material
......@@ -13,7 +13,7 @@ build-mkdocs:
- if: $CI_COMMIT_REF_PROTECTED == "true"
.pages-options: &pages-options
image: ${CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX}/python:3.9.15-slim-bullseye
image: ${CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX}/python:3.11.3-slim-bullseye
stage: deploy
script:
- mv mkdocs-built public
......
......@@ -5,10 +5,10 @@ renovate:
variables:
LOG_LEVEL: debug
RENOVATE_BASE_BRANCHES: "develop"
RENOVATE_BASE_BRANCHES: "master"
script:
- renovate $RENOVATE_EXTRA_FLAGS
rules:
- if: '$CI_PIPELINE_SOURCE == "schedule" && $CI_NIGHTLY == "develop"'
- if: '$CI_PIPELINE_SOURCE == "schedule" && $CI_NIGHTLY == "mainline"'
variables:
GOLANG_VERSION: "1.20.1"
GOLANG_VERSION: "1.20.3"
run:
go: $GOLANG_VERSION
concurrency: 4
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
......@@ -3,8 +3,7 @@ syntax = "proto3";
package gosdn.plugin;
import "github.com/openconfig/gnmi/proto/gnmi/gnmi.proto";
import "gosdn/pnd/pnd.proto";
import "gosdn/networkelement/networkelement.proto";
option go_package = "code.fbi.h-da.de/danet/gosdn/api/go/gosdn/plugin";
service Plugin {
......@@ -72,7 +71,7 @@ message DiffResponse {
}
message ValidateChangeRequest {
pnd.ApiOperation operation = 1;
networkelement.ApiOperation operation = 1;
gnmi.Path path = 2;
bytes value = 3;
}
......
This diff is collapsed.
ARG GOLANG_VERSION=1.20.1
ARG GOLANG_VERSION=1.20.3
ARG BUILDARGS
ARG $GITLAB_PROXY
......
......@@ -97,7 +97,7 @@ func adjustInterfacesOfNetworkElement(networkElementServer mnepb.NetworkElementS
requestUpdate := &mnepb.UpdateNetworkElementRequest{
Timestamp: time.Now().UnixNano(),
NetworkElement: &mnepb.NetworkElement{
NetworkElement: &mnepb.ManagedNetworkElement{
Id: mne.UUID.String(),
Name: mne.Name,
Model: modelAsString,
......@@ -140,7 +140,7 @@ func adjustNodeRoutesToMatchConfiguration(networkElementServer mnepb.NetworkElem
requestUpdate := &mnepb.UpdateNetworkElementRequest{
Timestamp: time.Now().UnixNano(),
NetworkElement: &mnepb.NetworkElement{
NetworkElement: &mnepb.ManagedNetworkElement{
Id: mne.UUID.String(),
Name: mne.Name,
Model: modelAsString,
......
......@@ -105,7 +105,7 @@ func (a *Application) callback(event *event.Event) {
requestUpdate := &networkelement.UpdateNetworkElementRequest{
Timestamp: time.Now().UnixNano(),
NetworkElement: &networkelement.NetworkElement{
NetworkElement: &networkelement.ManagedNetworkElement{
Id: d.UUID.String(),
Name: d.Name,
Model: modelAsString,
......