ood_core 0.23.4 → 0.23.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -2
- data/lib/ood_core/job/adapters/kubernetes/batch.rb +1 -4
- data/lib/ood_core/job/adapters/slurm.rb +1 -1
- data/lib/ood_core/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dd70ee666e6339110f07224c339fb666d7e130c44854784d818ef6a87172e610
|
|
4
|
+
data.tar.gz: a39550f3b74ea8b50aa28c35398d96dbf36d38e6768a37afa65c815cd5bd9cc2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d5e9f4ab2800182ebc7f8e7d1c975ba49a4d9e079731856f05cb85ae30e610a8cd9c51db8354aae4a4a6b99bfdd512a544dabc2d518e2fb089f96bd86be82976
|
|
7
|
+
data.tar.gz: ce37e66c311f9b1ddf7d2bd24b9213be4b1a676913bcc6e4242d4b9e84dcf175a5d4ea6e4fa4400ad3bf42d0bbf10e3829f1c145330bad916b581731e871aa30
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.23.5] - 04-10-2023
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- [804](https://github.com/OSC/ood_core/pull/804) fixed a kubernetes bug in the
|
|
15
|
+
`info_all` code path.
|
|
16
|
+
- Slurm `-M` flag now correctly accounts for full path `sacctmgr` commands in
|
|
17
|
+
[807](https://github.com/OSC/ood_core/pull/807).
|
|
18
|
+
|
|
10
19
|
## [0.23.4] - 03-06-2023
|
|
11
20
|
|
|
12
21
|
### Fixed
|
|
@@ -500,8 +509,9 @@ Functionally the same as [0.17.3] but with some CI updates.
|
|
|
500
509
|
- Initial release!
|
|
501
510
|
|
|
502
511
|
[Unreleased]: https://github.com/OSC/ood_core/compare/v0.23.4...HEAD
|
|
503
|
-
[0.23.
|
|
504
|
-
[0.23.
|
|
512
|
+
[0.23.5]: https://github.com/OSC/ood_core/compare/v0.23.4...v0.23.5
|
|
513
|
+
[0.23.4]: https://github.com/OSC/ood_core/compare/v0.23.3...v0.23.4
|
|
514
|
+
[0.23.3]: https://github.com/OSC/ood_core/compare/v0.23.2...v0.23.3
|
|
505
515
|
[0.23.2]: https://github.com/OSC/ood_core/compare/v0.23.1...v0.23.2
|
|
506
516
|
[0.23.1]: https://github.com/OSC/ood_core/compare/v0.23.0...v0.23.1
|
|
507
517
|
[0.23.0]: https://github.com/OSC/ood_core/compare/v0.22.0...v0.23.0
|
|
@@ -306,10 +306,7 @@ class OodCore::Job::Adapters::Kubernetes::Batch
|
|
|
306
306
|
|
|
307
307
|
def pod_info_from_json(pod)
|
|
308
308
|
hash = helper.pod_info_from_json(pod)
|
|
309
|
-
K8sJobInfo.new(hash)
|
|
310
|
-
rescue Helper::K8sDataError
|
|
311
|
-
# FIXME: silently eating error, could probably use a logger
|
|
312
|
-
nil
|
|
309
|
+
OodCore::Job::Adapters::Kubernetes::K8sJobInfo.new(hash)
|
|
313
310
|
end
|
|
314
311
|
|
|
315
312
|
def configure_auth(auth)
|
|
@@ -377,7 +377,7 @@ module OodCore
|
|
|
377
377
|
cmd = OodCore::Job::Adapters::Helper.bin_path(cmd, bin, bin_overrides)
|
|
378
378
|
|
|
379
379
|
args = args.map(&:to_s)
|
|
380
|
-
args.concat ["-M", cluster] if cluster && cmd
|
|
380
|
+
args.concat ["-M", cluster] if cluster && !cmd.to_s.end_with?('sacctmgr')
|
|
381
381
|
|
|
382
382
|
env = env.to_h
|
|
383
383
|
env["SLURM_CONF"] = conf.to_s if conf
|
data/lib/ood_core/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ood_core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.23.
|
|
4
|
+
version: 0.23.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eric Franz
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: exe
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2023-
|
|
13
|
+
date: 2023-04-10 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: ood_support
|