Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 3c37e8cc authored by Nikos Makris's avatar Nikos Makris Committed by SAUCEZ Damien
Browse files

Fixes for running the master branch on the UTH nodes

parent 76b47f83
No related branches found
No related tags found
1 merge request!2Fixes for running the master branch on the UTH nodes
...@@ -2,6 +2,23 @@ ...@@ -2,6 +2,23 @@
## Deployment node ## Deployment node
```console
sudo apt install docker.io
```
If there is no id_rsa file, create it with the following command:
```console
ssh-keygen -t rsa
```
Then copy the .pub file to the $HOME/.ssh/authorized_hosts of all the nodes that will be managed by the deployment container
```
cat $HOME/.ssh/id_rsa.pub
```
To build the deployment container:
```console ```console
docker build -t deployment_node -f Dockerfile . docker build -t deployment_node -f Dockerfile .
``` ```
...@@ -47,4 +64,4 @@ ansible-playbook -i inventories/staging --extra-vars "@params.yaml" --extra-vars ...@@ -47,4 +64,4 @@ ansible-playbook -i inventories/staging --extra-vars "@params.yaml" --extra-vars
## Deploy 5G network ## Deploy 5G network
```console ```console
ansible-playbook -i inventories/staging --extra-vars "@params.yaml" --extra-vars "@params.5g.yaml" --extra-vars "@secrets.yaml" --ask-vault-pass 5g.yaml ansible-playbook -i inventories/staging --extra-vars "@params.yaml" --extra-vars "@params.5g.yaml" --extra-vars "@secrets.yaml" --ask-vault-pass 5g.yaml
``` ```
\ No newline at end of file
...@@ -4,7 +4,8 @@ ...@@ -4,7 +4,8 @@
prometheus_basic_auth_password: "{{ secrets['prometheus_basic_auth_password'] }}" prometheus_basic_auth_password: "{{ secrets['prometheus_basic_auth_password'] }}"
grafana_password: "{{ secrets['grafana_password'] }}" grafana_password: "{{ secrets['grafana_password'] }}"
roles: roles:
- docker/tasks
- grafana-loki-prometheus/prometheus - grafana-loki-prometheus/prometheus
- grafana-loki-prometheus/loki - grafana-loki-prometheus/loki
- grafana-loki-prometheus/grafana - grafana-loki-prometheus/grafana
\ No newline at end of file
...@@ -134,7 +134,7 @@ def render(templatepath, gcn): ...@@ -134,7 +134,7 @@ def render(templatepath, gcn):
# ============================================================================== # ==============================================================================
# load configurations # load configurations
with open('roles/5g/templates/manifest.yaml', "r") as file: with open('roles/5g/base/templates/manifest.yaml', "r") as file:
tpls = yaml.safe_load(file) tpls = yaml.safe_load(file)
core = yaml.safe_load(os.environ['params_5g']) core = yaml.safe_load(os.environ['params_5g'])
...@@ -157,4 +157,4 @@ for item in tpls["templates"]: ...@@ -157,4 +157,4 @@ for item in tpls["templates"]:
content = render(path, gcn) content = render(path, gcn)
else: else:
content = readFile("/".join([tpls["output_dir"], path ])) content = readFile("/".join([tpls["output_dir"], path ]))
createFile(content, item['output']) createFile(content, item['output'])
\ No newline at end of file
...@@ -10,8 +10,8 @@ ...@@ -10,8 +10,8 @@
args: args:
chdir: oai-cn5g-fed chdir: oai-cn5g-fed
- name: generate OAI files - name: generate OAI files
ansible.builtin.shell: python3 roles/5g/files/gen_oai.py ansible.builtin.shell: python3 roles/5g/base/files/gen_oai.py
environment: environment:
params_5g: params_5g:
GCN: '{{ GCN }}' GCN: '{{ GCN }}'
...@@ -39,4 +39,4 @@ ...@@ -39,4 +39,4 @@
# # Deploy the UE # # Deploy the UE
# - name: Deploy the UE # - name: Deploy the UE
# ansible.builtin.include_tasks: 'ue.yaml' # ansible.builtin.include_tasks: 'ue.yaml'
# when: GCN.UE is defined and GCN.UE.present # when: GCN.UE is defined and GCN.UE.present
\ No newline at end of file
output_dir: roles/5g/templates/oai-cn5g-fed/charts output_dir: roles/5g/base/templates/oai-cn5g-fed/charts
templates: templates:
- template: oai-5g-core/oai-5g-basic/config.yaml.j2 - template: oai-5g-core/oai-5g-basic/config.yaml.j2
output: ./oai-cn5g-fed/charts/oai-5g-core/oai-5g-basic/config.yaml output: ./oai-cn5g-fed/charts/oai-5g-core/oai-5g-basic/config.yaml
...@@ -22,4 +22,4 @@ templates: ...@@ -22,4 +22,4 @@ templates:
- template: oai-5g-ran/oai-gnb/templates/configmap.yaml - template: oai-5g-ran/oai-gnb/templates/configmap.yaml
output: ./oai-cn5g-fed/charts/oai-5g-ran/oai-gnb/templates/configmap.yaml output: ./oai-cn5g-fed/charts/oai-5g-ran/oai-gnb/templates/configmap.yaml
- template: oai-5g-ran/oai-gnb/templates/deployment.yaml - template: oai-5g-ran/oai-gnb/templates/deployment.yaml
output: ./oai-cn5g-fed/charts/oai-5g-ran/oai-gnb/templates/deployment.yaml output: ./oai-cn5g-fed/charts/oai-5g-ran/oai-gnb/templates/deployment.yaml
\ No newline at end of file
...@@ -21,11 +21,11 @@ spec: ...@@ -21,11 +21,11 @@ spec:
- containerPort: 8080 - containerPort: 8080
resources: resources:
limits: limits:
cpu: 200m cpu: 300m
memory: 200Mi memory: 400Mi
requests: requests:
cpu: 100m cpu: 150m
memory: 100Mi memory: 200Mi
volumeMounts: volumeMounts:
- name: rootfs - name: rootfs
mountPath: /rootfs mountPath: /rootfs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment