Skip to content
This repository has been archived by the owner on Jan 24, 2023. It is now read-only.

Commit

Permalink
Merge pull request #81 from open-ness/openness-20.12.01
Browse files Browse the repository at this point in the history
Openness 20.12.01
  • Loading branch information
cjnolan authored Jan 6, 2021
2 parents f5c28d4 + de12701 commit 063ce13
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion group_vars/all/10-default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ os_remove_yum_plugins: true

### OpenNESS Git Repository
# Following variable specify branch/SHA/tag to be checked out for the source repository
git_repo_branch: openness-20.12
git_repo_branch: openness-20.12.01

# If True, the repository will be deleted and cloned again
# If False, repository will be left as it is and any changes won't be overwritten.
Expand Down
2 changes: 1 addition & 1 deletion group_vars/edgenode_vca_group/10-default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ os_remove_yum_plugins: true
docker_images: []

git_repo_url: https://{{ git_repo_token }}@github.com/open-ness/edgenode.git
git_repo_branch: openness-20.12
git_repo_branch: openness-20.12.01
_git_repo_dest: "{{ openness_dir }}/edgenode"
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ pip-packages:
- name: attrs
url: 14/df/479736ae1ef59842f512548bacefad1abed705e400212acba43f9b0fa556/attrs-20.2.0-py2.py3-none-any.whl
- name: pyrsistent
url: 4d/70/fd441df751ba8b620e03fd2d2d9ca902103119616f0f6cc42e6405035062/pyrsistent-0.17.3.tar.gz
url: 80/18/1492d651693ef7d40e0a40377ed56a8cc5c5fe86073eb6c56e53513f4480/pyrsistent-0.16.1.tar.gz
- name: setuptools
url: 6d/38/c21ef5034684ffc0412deefbb07d66678332290c14bb5269c85145fbd55e/setuptools-50.3.2-py3-none-any.whl
- name: backports.shutil_get_terminal_size
Expand Down
3 changes: 1 addition & 2 deletions roles/docker/files/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,14 @@ pygobject==3.22.0
pygpgme==0.3
pyliblzma==0.5.3
PyNaCl==1.4.0
pyrsistent==0.16.1
python-linux-procfs==0.4.9
pyudev==0.15
pyxattr==0.5.1
PyYAML==3.10
requests==2.24.0
schedutils==0.4
six==1.9.0
slip==0.4.0
slip.dbus==0.4.0
texttable==1.6.3
urlgrabber==3.10
urllib3==1.25.11
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,11 @@
ignore_errors: yes
register: ser_line
- name: append server line to /etc/hosts
command: "ssh {{ vca_node_ip }} echo '{{ ser_line.stdout }}' >> /etc/hosts"
shell: >
ssh {{ vca_node_ip }} "grep -q '{{ item }}' /etc/hosts" || ssh {{ vca_node_ip }} "echo \"{{ item }}\" >> /etc/hosts"
become: yes
when: "item | length > 0"
with_items: "{{ ser_line.stdout_lines }}"
- name: create `/etc/docker/` folder
command: "ssh {{ vca_node_ip }} mkdir -p /etc/docker/"
become: yes
Expand Down
2 changes: 1 addition & 1 deletion roles/telemetry/grafana/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
dest: "{{ tmp_dir.path }}/"

- name: add default Helm repository
command: helm repo add stable https://kubernetes-charts.storage.googleapis.com/
command: helm repo add stable https://charts.helm.sh/stable
changed_when: true
when: not offline_enable

Expand Down
2 changes: 1 addition & 1 deletion roles/telemetry/prometheus/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
dest: "{{ tmp_dir.path }}/values.yml"

- name: add default Helm repository
command: helm repo add stable https://kubernetes-charts.storage.googleapis.com/
command: helm repo add stable https://charts.helm.sh/stable
changed_when: true
when: not offline_enable

Expand Down

0 comments on commit 063ce13

Please sign in to comment.