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

OECC/PSC'22 - Interdomain test:

- Updated descriptors to release 2
- Updated scripts to release 2
- Updated manifests to release 2
- Added TODO file
parent 7ab8e150
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
# Add here your files containing confidential testbed details such as IP addresses, ports, usernames, passwords, etc.
+3 −0
Original line number Diff line number Diff line
- Update domain descriptors to 2 domains
- Test scenario deployment
- Test scenario operation
+22 −0
Original line number Diff line number Diff line
#!/bin/bash
# Copyright 2022-2023 ETSI TeraFlowSDN - TFS OSG (https://tfs.etsi.org/)
#
# 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.


# Delete old namespaces
kubectl delete namespace tfs-dom1 tfs-dom2

# Delete secondary ingress controllers
kubectl delete -f oeccpsc22/nginx-ingress-controller-dom1.yaml
kubectl delete -f oeccpsc22/nginx-ingress-controller-dom2.yaml
+36 −0
Original line number Diff line number Diff line
#!/bin/bash
# Copyright 2022-2023 ETSI TeraFlowSDN - TFS OSG (https://tfs.etsi.org/)
#
# 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.


# Delete old namespaces
kubectl delete namespace tfs-dom1 tfs-dom2

# Delete secondary ingress controllers
kubectl delete -f oeccpsc22/nginx-ingress-controller-dom1.yaml
kubectl delete -f oeccpsc22/nginx-ingress-controller-dom2.yaml

# Create secondary ingress controllers
kubectl apply -f oeccpsc22/nginx-ingress-controller-dom1.yaml
kubectl apply -f oeccpsc22/nginx-ingress-controller-dom2.yaml

# Deploy TFS for Domain 1
source oeccpsc22/deploy_specs_dom1.sh
./deploy/all.sh
mv tfs_runtime_env_vars.sh tfs_runtime_env_vars_dom1.sh

# Deploy TFS for Domain 2
source oeccpsc22/deploy_specs_dom2.sh
./deploy/all.sh
mv tfs_runtime_env_vars.sh tfs_runtime_env_vars_dom2.sh
+29 −0
Original line number Diff line number Diff line
#!/bin/bash
# Copyright 2022-2023 ETSI TeraFlowSDN - TFS OSG (https://tfs.etsi.org/)
#
# 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.


# Delete old namespaces
kubectl delete namespace tfs-dom1

# Delete secondary ingress controllers
kubectl delete -f oeccpsc22/nginx-ingress-controller-dom1.yaml

# Create secondary ingress controllers
kubectl apply -f oeccpsc22/nginx-ingress-controller-dom1.yaml

# Deploy TFS for Domain 1
source oeccpsc22/deploy_specs_dom1.sh
./deploy/all.sh
mv tfs_runtime_env_vars.sh tfs_runtime_env_vars_dom1.sh
Loading