Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbelamaric authored May 4, 2023
2 parents a8fd1b1 + 67061ca commit 8a53ab4
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
check-super-linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.4.0
- uses: actions/checkout@v3.5.2
- name: Check super-linter
uses: github/super-linter@v4.10.1
uses: github/super-linter@v5.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
LINTER_RULES_PATH: .github/linters
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/on-demand_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
name: Check scripts format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.4.0
- uses: actions/checkout@v3.5.2
- name: Run the sh-checker
uses: luizm/[email protected]
env:
Expand All @@ -44,7 +44,7 @@ jobs:
env:
DEBUG: true
steps:
- uses: actions/checkout@v3.4.0
- uses: actions/checkout@v3.5.2
- name: Install dependencies and configures kind clusters
working-directory: ./scripts
run: ./install.sh
2 changes: 1 addition & 1 deletion .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
check-dockerfile:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.4.0
- uses: actions/checkout@v3.5.2
- name: update Dockerfile
uses: ludeeus/[email protected]
with:
Expand Down
9 changes: 5 additions & 4 deletions nephio-ansible-install/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ all:
install_dir: nephio-install
packages_url: https://github.com/nephio-project/nephio-packages.git
clusters:
mgmt: {mgmt_subnet: 172.88.0.0/16, pod_subnet: 10.196.0.0/16, svc_subnet: 10.96.0.0/16}
edge1: {mgmt_subnet: 172.89.0.0/16, pod_subnet: 10.197.0.0/16, svc_subnet: 10.97.0.0/16}
edge2: {mgmt_subnet: 172.90.0.0/16, pod_subnet: 10.198.0.0/16, svc_subnet: 10.98.0.0/16}
region1: {mgmt_subnet: 172.91.0.0/16, pod_subnet: 10.199.0.0/16, svc_subnet: 10.99.0.0/16}
mgmt: {mgmt_subnet: 172.88.0.0/16, pod_subnet: 10.196.0.0/16, svc_subnet: 10.96.0.0/16, master_iface: eth1}
edge1: {mgmt_subnet: 172.89.0.0/16, pod_subnet: 10.197.0.0/16, svc_subnet: 10.97.0.0/16, master_iface: eth1}
edge2: {mgmt_subnet: 172.90.0.0/16, pod_subnet: 10.198.0.0/16, svc_subnet: 10.98.0.0/16, master_iface: eth1}
region1: {mgmt_subnet: 172.91.0.0/16, pod_subnet: 10.199.0.0/16, svc_subnet: 10.99.0.0/16, master_iface: eth1}
children:
vm:
hosts:
Expand All @@ -88,6 +88,7 @@ Some customizations are required to tailor the installation to your environment.
- gitea docker container will be created at runtime.
- gitea_username: your [gitea](https://gitea.io) (local repository) username
- gitea_password: your [gitea](https://gitea.io) (local repository) password
- master_iface: the interface name on the node where the API server is accessible, the default value is `eth1` for KIND clusters deployed by ansible scripts. The value for this field may need to be updated for non-KIND cluster deployments.

Note: You can choose between using remote GitHub repositories or local gitea repositories for your Nephio environment by setting either the GitHub variables or the gitea variables.

Expand Down
2 changes: 2 additions & 0 deletions nephio-ansible-install/nind/nephio.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ all:
cloud_user: user
gitea_username: nephio
gitea_password: nephio
validate_certs: true # change this to false if you want to avoid ssl/tls check
container_engine: docker # either docker or podman
proxy:
http_proxy:
https_proxy:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ spec:
siteCode: {{ item.key }}
cniConfig:
cniType: macvlan
masterInterface: eth1
masterInterface: {{ item.value.master_iface }}

0 comments on commit 8a53ab4

Please sign in to comment.