ood_core 0.17.4 → 0.17.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 +8 -1
- data/lib/ood_core/job/adapters/kubernetes/batch.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: 88f0fb9eed8a53308dd19e73929e3c7af71ad1295738d69e0bf34d551a2ef0b3
|
|
4
|
+
data.tar.gz: 6437344171900c7b289ee3cf658550f050f95435e46b75eb1e34891e6ec9af08
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b6aa7f5b93547e1c167870146f76766c70f2d26b19c706fd757880b70973281466674c5791bf62eafd5297b6733f20dc8e37128b4715374d764eb6c85d2b2919
|
|
7
|
+
data.tar.gz: 3930e176306b5354d2f451d744c89be9f61a714c31e8a0e4dcf6fc680ad7e70af6eb8769675157c7f7d247258f33d705bd146ac50e22553f8e064898b2ebebe6
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.17.5] - 8-20-2021
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- kubernetes jobs delete without waiting in [314](https://github.com/OSC/ood_core/pull/314).
|
|
15
|
+
|
|
10
16
|
## [0.17.4] - 7-29-2021
|
|
11
17
|
|
|
12
18
|
Functionally the same as [0.17.3] but with some CI updates.
|
|
@@ -374,7 +380,8 @@ Functionally the same as [0.17.3] but with some CI updates.
|
|
|
374
380
|
### Added
|
|
375
381
|
- Initial release!
|
|
376
382
|
|
|
377
|
-
[Unreleased]: https://github.com/OSC/ood_core/compare/v0.17.
|
|
383
|
+
[Unreleased]: https://github.com/OSC/ood_core/compare/v0.17.5...HEAD
|
|
384
|
+
[0.17.5]: https://github.com/OSC/ood_core/compare/v0.17.4...v0.17.5
|
|
378
385
|
[0.17.4]: https://github.com/OSC/ood_core/compare/v0.17.3...v0.17.4
|
|
379
386
|
[0.17.3]: https://github.com/OSC/ood_core/compare/v0.17.2...v0.17.3
|
|
380
387
|
[0.17.2]: https://github.com/OSC/ood_core/compare/v0.17.1...v0.17.2
|
|
@@ -125,7 +125,7 @@ class OodCore::Job::Adapters::Kubernetes::Batch
|
|
|
125
125
|
when "get"
|
|
126
126
|
call_json_output('get', resource, id)
|
|
127
127
|
when "delete"
|
|
128
|
-
call("#{namespaced_cmd} delete #{resource} #{id}")
|
|
128
|
+
call("#{namespaced_cmd} delete #{resource} #{id} --wait=false")
|
|
129
129
|
end
|
|
130
130
|
rescue NotFoundError
|
|
131
131
|
{}
|
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.17.
|
|
4
|
+
version: 0.17.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: 2021-
|
|
13
|
+
date: 2021-08-20 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: ood_support
|