You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here are a few issues with the this utils/setup_nfs_provisioner.sh script:
a) Does not install unzip with is required.
b) Does not pull a version of yq for ppc64le
c) yq fails to parse deployment.yaml
./setup_nfs_provisioner.sh: line 82: unzip: command not found
./setup_nfs_provisioner.sh: line 84: cd: external-storage-master/nfs-client/: No such file or directory
INFO: generating deployment.yaml for ppc64le...
./setup_nfs_provisioner.sh: line 107: deploy/deployment-ppc64le.yaml: No such file or directory
ERROR: failed to update deployment.yaml -- aborting...
After installing unzip and yq:
[root@rdr-rhop-f5d9a8-mon01-bastion-0 utils]# ./setup_nfs_provisioner.sh /home/nfsshare 192.168.0.204
./setup_nfs_provisioner.sh: line 29: [: argument expected
INFO: proceeding with making this node as NFS server...
Last metadata expiration check: 1 day, 1:09:33 ago on Thu 30 Sep 2021 01:19:56 PM UTC.
Package nfs-utils-1:2.3.3-41.el8_4.2.ppc64le is already installed.
Dependencies resolved.
Nothing to do.
Complete!
Warning: ALREADY_ENABLED: nfs
success
Warning: ALREADY_ENABLED: rpc-bind
success
Warning: ALREADY_ENABLED: mountd
success
success
INFO: downloading and extracting external-storage zip...
INFO: generating deployment.yaml for ppc64le...
Error: unknown command "write" for "yq"
Run 'yq --help' for usage.
ERROR: failed to update deployment.yaml -- aborting...
The text was updated successfully, but these errors were encountered:
Thanks @manojnkumar for reporting this. The script was first written with yq v3, and it has since released v4 which is incompatible with v3. Time to revisit and make necessary fixes that'd work with yq v4.
Here are a few issues with the this
utils/setup_nfs_provisioner.sh
script:a) Does not install unzip with is required.
b) Does not pull a version of yq for ppc64le
c) yq fails to parse deployment.yaml
After installing unzip and yq:
The text was updated successfully, but these errors were encountered: