Skip to content

Commit

Permalink
bump up version to v0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
iychoi committed Oct 25, 2024
1 parent e171773 commit 85023ab
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 35 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PKG=github.com/cyverse/irodsfs
VERSION=v0.10.0
VERSION=v0.10.1
GIT_COMMIT?=$(shell git rev-parse HEAD)
BUILD_DATE?=$(shell date -u +"%Y-%m-%dT%H:%M:%SZ")
LDFLAGS?="-X '${PKG}/commons.clientVersion=${VERSION}' -X '${PKG}/commons.gitCommit=${GIT_COMMIT}' -X '${PKG}/commons.buildDate=${BUILD_DATE}'"
Expand Down
67 changes: 33 additions & 34 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ After successful build, you will be able to find the binary in bin directory.
An iRODS user `iychoi` mounts a collection `/iplant/home/iychoi` in iRODS Server `data.cyverse.org` on a local directory `/mount/irods`.

- iRODS User: `iychoi`
- iRODS Password: `my_password`
- iRODS Host: `data.cyverse.org`
- iRODS Port: `1247`
- iRODS Zone: `iplant`
Expand All @@ -84,7 +85,7 @@ An iRODS user `iychoi` mounts a collection `/iplant/home/iychoi` in iRODS Server

Run `irodsfs`.
```shell script
./bin/irodsfs irods://[email protected]:1247/iplant/home/iychoi /mount/irods
./bin/irodsfs irods://iychoi:my_password@data.cyverse.org:1247/iplant/home/iychoi /mount/irods
```

After mounting, `irodsfs` will be executed in the background.
Expand All @@ -99,6 +100,7 @@ ls /mount/irods
An iRODS user `iychoi` mounts a collection `/iplant/home/iychoi` in iRODS Server `data.cyverse.org` on a local directory `/mount/irods`.

- iRODS User: `iychoi`
- iRODS Password: `my_password`
- iRODS Host: `data.cyverse.org`
- iRODS Port: `1247`
- iRODS Zone: `iplant`
Expand All @@ -107,12 +109,11 @@ An iRODS user `iychoi` mounts a collection `/iplant/home/iychoi` in iRODS Server

Create a `config.yaml` file.
```yaml
host: data.cyverse.org
port: 1247
proxy_user: iychoi
client_user: iychoi
zone: iplant
password: "your_password" or leave empty to type in later
irods_host: data.cyverse.org
irods_port: 1247
irods_user_name: iychoi
irods_zone_name: iplant
irods_user_password: `my_password`

path_mappings:
- irods_path: /iplant/home/iychoi
Expand All @@ -136,6 +137,7 @@ ls /mount/irods
An iRODS user `iychoi` mounts a collection `/iplant/home/iychoi` in iRODS Server `data.cyverse.org` on a local directory `/mount/irods` with PAM Authentication (with SSL).

- iRODS User: `iychoi`
- iRODS Password: `my_password`
- iRODS Host: `data.cyverse.org`
- iRODS Port: `1247`
- iRODS Zone: `iplant`
Expand All @@ -150,19 +152,18 @@ An iRODS user `iychoi` mounts a collection `/iplant/home/iychoi` in iRODS Server

Create a `config.yaml` file.
```yaml
host: data.cyverse.org
port: 1247
proxy_user: iychoi
client_user: iychoi
zone: iplant
password: "your_password" or leave empty to type in later
auth_scheme: pam
ssl_ca_cert_file: "/etc/ssl/certs/ca-certificates.crt"
ssl_encryption_key_size: 32
ssl_encryption_algorithm: "AES-256-CBC"
ssl_encryption_salt_size: 8
ssl_encryption_hash_rounds: 16
irods_host: data.cyverse.org
irods_port: 1247
irods_user_name: iychoi
irods_zone_name: iplant
irods_user_password: `my_password`

irods_authentication_scheme: "pam_password"
irods_ssl_ca_certificate_file: "/home/iychoi/.irods/ca_cert.pem"
irods_encryption_key_size: 32
irods_encryption_algorithm: "AES-256-CBC"
irods_encryption_salt_size: 8
irods_encryption_num_hash_rounds: 16

path_mappings:
- irods_path: /iplant/home/iychoi
Expand Down Expand Up @@ -194,12 +195,11 @@ An iRODS user `iychoi` mounts a collection `/iplant/home/iychoi/mount1` and `/ip

Create a `config.yaml` file.
```yaml
host: data.cyverse.org
port: 1247
proxy_user: iychoi
client_user: iychoi
zone: iplant
password: "your_password" or leave empty to type in later
irods_host: data.cyverse.org
irods_port: 1247
irods_user_name: iychoi
irods_zone_name: iplant
irods_user_password: `my_password`

path_mappings:
- irods_path: /iplant/home/iychoi/mount1
Expand All @@ -226,9 +226,9 @@ ls /mount/irods

An iRODS user `iychoi` has iCommands config in `~/.irods`.

Run `irodsfs` with `--config` or `-c` option.
Run `irodsfs` without any `--config` or `-c` option.
```shell script
./bin/irodsfs -c ~/.irods /mount/irods
./bin/irodsfs /mount/irods
```

After mounting, `irodsfs` will be executed in the background.
Expand Down Expand Up @@ -260,12 +260,11 @@ Command-line argument `--log_level` overrides the log level set in a configurati
To set the log level using a configuration file, add a `log_level` field.

```yaml
host: data.cyverse.org
port: 1247
proxy_user: iychoi
client_user: iychoi
zone: iplant
password: "your_password" or leave empty to type in later
irods_host: data.cyverse.org
irods_port: 1247
irods_user_name: iychoi
irods_zone_name: iplant
irods_user_password: `my_password`
log_level: FATAL

path_mappings:
Expand Down

0 comments on commit 85023ab

Please sign in to comment.