Skip to content

Commit

Permalink
Merge 64301c2 into b216074
Browse files Browse the repository at this point in the history
  • Loading branch information
Lut99 committed May 13, 2022
2 parents b216074 + 64301c2 commit cefdb4d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@

All notable changes to the Brane framework will be documented in this file.

## [0.6.1] - 2022-05-12
## [0.6.1] - 2022-05-13
### Added
- The code of the "Hello, world!" example in the documentation.

### Changed
- `brane-drv`, `brane-job` and `brane-plr` services to accept `infra.yml` and `secrets.yml` via a shared folder again.
- `brane test` no longer printing useless 'Please provide input for the chosen function' statement if the function has no inputs.
- The `kube` dependencies in `brane-job` to be pushed to `0.72`, and bumping Kube API version to 1.23.

### Fixed
- An issue with the `brane-cli` dependency checker where it would fail if it cannot read the Docker Buildx version. This is now patched to be a) slightly more free in what it can parse, and b) not error anymore when it sees an invalid version number but throw a warning instead.
Expand Down
4 changes: 2 additions & 2 deletions brane-job/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ dotenv = "0.15"
env_logger = "0.9"
futures = "0.3"
futures-util = "0.3"
k8s-openapi = { version = "0.13", default-features = false, features = ["v1_20"] }
kube = "0.59"
k8s-openapi = { version = "0.14", default-features = false, features = ["v1_23"] }
kube = "0.72"
log = "0.4"
maplit = "1.0"
prost = "0.8"
Expand Down
4 changes: 2 additions & 2 deletions brane-job/src/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Created:
* 07 Feb 2022, 10:20:50
* Last edited:
* 21 Mar 2022, 21:33:55
* 13 May 2022, 15:56:19
* Auto updated?
* Yes
*
Expand Down Expand Up @@ -66,7 +66,7 @@ pub enum JobError {
/// A given Kubernetes configuration file cannot be parsed as YAML
K8sYAMLError{ location_id: String, err: serde_yaml::Error },
/// A given Kubernetes configuration file cannot be parsed as an actual configuration file
K8sConfigError{ location_id: String, err: kube::Error },
K8sConfigError{ location_id: String, err: kube::config::KubeconfigError },
/// Could not construct a client from the given configuration file
K8sClientError{ location_id: String, err: kube::Error },
/// Could not create the JobDescription from the internal JSON file
Expand Down

0 comments on commit cefdb4d

Please sign in to comment.