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
The cloud name specified in the `clouds.yaml` should be set against `uploader.filestore.cloud`. If Nectar or another openstack compliant cloud service is used, then the `clouds.yaml` should normally use `openstack`. The name is found under `clouds` in the yaml file.
85
86
```yaml
@@ -93,6 +94,15 @@ The `uploader.filestore.local` specifies the local directory where new files are
93
94
94
95
The `uploader.filestore.cloud.container` specifies the container name in the object store where the files are uploaded. If the container does not exist, the uploader will create it.
95
96
97
+
```yaml
98
+
# exclude files with suffixes and prefixes
99
+
uploader.ignore.suffix:
100
+
- .active
101
+
uploader.ignore.prefix:
102
+
- '~'
103
+
```
104
+
The two yaml keys, `uploader.ignore.suffix` and `uploader.ignore.prefix`, specify a list of suffixes and prefixes of filenames that will be ignored. To define more than one suffix or prefix, add more lines under the key as a list.
logger.error(f'{type(self).__name__}: The application is unable to locate the application credential file "clouds.yaml".')
67
95
logger.warning(f'{type(self).__name__}: Ensure that a clouds.yaml file is obtained from the openstack cloud provider.')
68
96
logger.warning(f'{type(self).__name__}: If you have a valid clouds.yaml file, make sure it is in the current directory or ~/.config/openstack and only one cloud.yaml file.')
0 commit comments