Skip to content

Commit

Permalink
Fix several linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbelamaric committed Nov 13, 2022
1 parent f7ad7fc commit 3dbff60
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ organizational, team, and individual deployment variants of each package.
Let's create our own organizational variant of the upstream free5gc package,
using the Web UI.

...results in free5gc-operator package in the `catalog` repo...
...results in free5gc-operator package in the `catalog` repository...

### Deploy the free5gc Operator
We can use a `PackageDeployment` resource to create a multi-cluster deployment
Expand Down
3 changes: 2 additions & 1 deletion ansible_kind/scripts/multiclusterkind/configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ function _get_pkg {

function _install_configsync {
local kubeconfig="$1"
local cluster=$(basename "$kubeconfig" ".config")
local cluster
cluster=$(basename "$kubeconfig" ".config")
local path="$base_path/$cluster"
_get_pkg "$cluster" https://github.com/nephio-project/nephio-packages.git/nephio-configsync

Expand Down
6 changes: 3 additions & 3 deletions demo-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ repositories separately.
`./scripts/repos.sh create $PARTICIPANT`


# Automation TODO
## Automation TODO

* The `repos.sh` script and GitHub token are available on the VM; we could run
`./repos.sh create $(hostname)` to automatically create the repositories. If we
do this, the script may fail due to repos already existing, or due to GitHub
do this, the script may fail due to repostories already existing, or due to GitHub
rate limits. So, we need to be sure it failing does not abort the rest of setup.
We also need to be prepared to run the script again from the workshop VM to
provision any repos that failed to be created.
provision any repositories that failed to be created.

0 comments on commit 3dbff60

Please sign in to comment.