Commit ba6a772a authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Created skeleton for OECC/PSC'22 functional test

parent 078b1976
Loading
Loading
Loading
Loading

oeccpsc22

0 → 120000
+1 −0
Original line number Diff line number Diff line
src/tests/oeccpsc22/
 No newline at end of file
+2 −1
Original line number Diff line number Diff line
@@ -14,4 +14,5 @@

# include the individual .gitlab-ci.yml of each integration test
include:
  - local: '/src/tests/ofc22_bootstrap_monitor_l3vpn/.gitlab-ci.yml'
  - local: '/src/tests/ofc22/.gitlab-ci.yml'
  - local: '/src/tests/oeccpsc22/.gitlab-ci.yml'
+8 −0
Original line number Diff line number Diff line
# OECC/PSC'22 Paper - Interdomain slices
This functional test reproduces the experiment in paper "... paper title ..." presented at OECC/PSC'22 conference
[OECC/PSC'22](... demo link ...).

## Functional test folder
This functional test can be found in folder `./src/tests/oeccpsc22/`. A convenience alias `./oeccpsc22/` pointing to that folder has been defined.

# TO BE WRITTEN
+14 −0
Original line number Diff line number Diff line
# Copyright 2021-2023 H2020 TeraFlow (https://www.teraflow-h2020.eu/)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
+33 −0
Original line number Diff line number Diff line
#!/bin/bash
# Copyright 2021-2023 H2020 TeraFlow (https://www.teraflow-h2020.eu/)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.


# OECC/PSC 22 deployment settings

export REGISTRY_IMAGE=""
export COMPONENTS="context device service compute monitoring interdomain webui" # slice
export IMAGE_TAG="oeccpsc22"
export K8S_HOSTNAME="kubernetes-master"
#export GRAFANA_PASSWORD="admin123+"

# Deploy TeraFlow instance 1
export K8S_NAMESPACE="oeccpsc22-1"
export EXTRA_MANIFESTS="./oeccpsc22/expose_services_teraflow_1.yaml"
./deploy_in_kubernetes.sh

# Deploy TeraFlow instance 2
export K8S_NAMESPACE="oeccpsc22-2"
export EXTRA_MANIFESTS="./oeccpsc22/expose_services_teraflow_2.yaml"
./deploy_in_kubernetes.sh
Loading