Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TestSys v0.0.3 #638

Merged
merged 1 commit into from
Nov 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,45 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

## [0.0.3] - 2022-11-02

### Added

- ECS cluster provider support for existing IAM instance profiles [#555]
- Support for session tokens within aws secrets [#564]
- TestManager support for custom status columns [#591]
- EKS cluster provider accepts `eksctl` configuration files [#447]
- Builder macro for templated values in an agents config [#537]
- Constant for TestSys version [#626]
- VSphere Cluster provider [#613]

### Changed
stmcginnis marked this conversation as resolved.
Show resolved Hide resolved

- EC2 provider uses a list of subnets to launch instances [#585]
- EC2 provider uses a list of instance types to launch instances [#602]
- CRD API group was changed to `testsys.system` [#633]
- TestSys namespace was shortened to `testsys` [#633]
- Test Manager's uninstall was updated to remove TestSys crds [#635]

### Removed

- Yamlgen was removed [#580]
- The `parse-duration` crate was removed [#607]

[#555]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/555
[#564]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/564
[#591]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/591
[#447]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/447
[#537]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/537
[#626]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/626
[#613]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/613
[#585]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/585
[#602]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/602
[#633]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/633
[#635]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/635
[#580]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/580
[#607]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/607

## [0.0.2] - 2022-08-31

### Added
Expand Down
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions agent/agent-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "agent-common"
version = "0.0.2"
version = "0.0.3"
edition = "2021"
publish = false
license = "MIT OR Apache-2.0"

[dependencies]
model = { version = "0.0.2", path = "../../model" }
model = { version = "0.0.3", path = "../../model" }
snafu = "0.7"

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions agent/resource-agent/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "resource-agent"
version = "0.0.2"
version = "0.0.3"
edition = "2021"
publish = false
license = "MIT OR Apache-2.0"

[dependencies]
agent-common = { version = "0.0.2", path = "../agent-common" }
agent-common = { version = "0.0.3", path = "../agent-common" }
async-trait = "0.1"
log = "0.4"
model = { version = "0.0.2", path = "../../model" }
model = { version = "0.0.3", path = "../../model" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
snafu = "0.7"
Expand Down
10 changes: 5 additions & 5 deletions agent/test-agent-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[package]
name = "test-agent-cli"
version = "0.0.2"
version = "0.0.3"
edition = "2021"
publish = false
license = "MIT OR Apache-2.0"

[dependencies]
argh = "0.1"
agent-common = { version = "0.0.2", path = "../agent-common" }
agent-common = { version = "0.0.3", path = "../agent-common" }
copy_dir = "0.1"
test-agent = { version = "0.0.2", path = "../test-agent" }
test-agent = { version = "0.0.3", path = "../test-agent" }
tokio = { version = "1", features = ["macros", "rt-multi-thread", "fs"] }
tokio-util = "0.7"
log = "0.4"
model = { version = "0.0.2", path = "../../model" }
model = { version = "0.0.3", path = "../../model" }
snafu = "0.7"
async-trait = "0.1"
tempfile = "3"
Expand All @@ -26,4 +26,4 @@ tar = "0.4"

[dev-dependencies]
assert_cmd = "2"
selftest = { version = "0.0.2", path = "../../selftest" }
selftest = { version = "0.0.3", path = "../../selftest" }
6 changes: 3 additions & 3 deletions agent/test-agent/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "test-agent"
version = "0.0.2"
version = "0.0.3"
edition = "2021"
publish = false
license = "MIT OR Apache-2.0"

[dependencies]
agent-common = { version = "0.0.2", path = "../agent-common" }
agent-common = { version = "0.0.3", path = "../agent-common" }
async-trait = "0.1"
log = "0.4"
model = { version = "0.0.2", path = "../../model" }
model = { version = "0.0.3", path = "../../model" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
snafu = "0.7"
Expand Down
10 changes: 5 additions & 5 deletions agent/utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
[package]
name = "agent-utils"
version = "0.0.2"
version = "0.0.3"
edition = "2018"
publish = false
license = "MIT OR Apache-2.0"

[dependencies]
agent-common = { version = "0.0.2", path = "../../agent/agent-common" }
agent-common = { version = "0.0.3", path = "../../agent/agent-common" }
aws-config = "0.49"
aws-types = "0.49"
aws-sdk-sts = "0.19"
aws-smithy-types = "0.49"
base64 = "0.13"
env_logger = "0.9"
log = "0.4"
model = { version = "0.0.2", path = "../../model" }
resource-agent = { version = "0.0.2", path = "../../agent/resource-agent" }
model = { version = "0.0.3", path = "../../model" }
resource-agent = { version = "0.0.3", path = "../../agent/resource-agent" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
snafu = "0.7"
test-agent = { version = "0.0.2", path = "../../agent/test-agent" }
test-agent = { version = "0.0.3", path = "../../agent/test-agent" }
14 changes: 7 additions & 7 deletions bottlerocket/agents/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "bottlerocket-agents"
version = "0.0.2"
version = "0.0.3"
edition = "2018"
publish = false
license = "MIT OR Apache-2.0"

[dependencies]
agent-common = { version = "0.0.2", path = "../../agent/agent-common" }
agent-utils = { version = "0.0.2", path = "../../agent/utils" }
bottlerocket-types = { version = "0.0.2", path = "../types" }
agent-common = { version = "0.0.3", path = "../../agent/agent-common" }
agent-utils = { version = "0.0.3", path = "../../agent/utils" }
bottlerocket-types = { version = "0.0.3", path = "../types" }
async-trait = "0.1"
aws-config = "0.49"
aws-types = "0.49"
Expand All @@ -26,16 +26,16 @@ k8s-openapi = { version = "0.16", default-features = false, features = ["v1_20"]
kube = { version = "0.75", default-features = false, features = ["config", "derive", "client"] }
log = "0.4"
maplit = "1"
model = { version = "0.0.2", path = "../../model" }
model = { version = "0.0.3", path = "../../model" }
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls", "blocking"] }
resource-agent = { version = "0.0.2", path = "../../agent/resource-agent" }
resource-agent = { version = "0.0.3", path = "../../agent/resource-agent" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_plain = "1"
serde_yaml = "0.8"
sha2 = "0.10"
snafu = "0.7"
test-agent = { version = "0.0.2", path = "../../agent/test-agent" }
test-agent = { version = "0.0.3", path = "../../agent/test-agent" }
tokio = { version = "1", default-features = false, features = ["macros", "rt-multi-thread", "time"] }
tough = { version = "0.12", features = ["http"] }
url = "2"
Expand Down
8 changes: 4 additions & 4 deletions bottlerocket/testsys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
[package]
name = "testsys"
version = "0.0.2"
version = "0.0.3"
edition = "2021"
publish = false
license = "MIT OR Apache-2.0"

[dependencies]
base64 = "0.13.1"
bottlerocket-types = { version = "0.0.2", path = "../types" }
bottlerocket-types = { version = "0.0.3", path = "../types" }
env_logger = "0.9"
futures = "0.3"
http = "0"
k8s-openapi = { version = "0.16", features = ["v1_20", "api"], default-features = false }
kube = { version = "0.75", default-features = true, features = ["config", "derive", "ws"] }
log = "0.4"
maplit = "1"
model = { version = "0.0.2", path = "../../model" }
model = { version = "0.0.3", path = "../../model" }
serde = "1"
serde_plain = "1"
serde_json = "1"
Expand All @@ -30,7 +30,7 @@ topological-sort = "0.2"

[dev-dependencies]
assert_cmd = "2"
selftest = { version = "0.0.2", path = "../../selftest" }
selftest = { version = "0.0.3", path = "../../selftest" }

[features]
# The `integ` feature enables integration tests. These tests require docker and kind.
Expand Down
4 changes: 2 additions & 2 deletions bottlerocket/types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "bottlerocket-types"
version = "0.0.2"
version = "0.0.3"
edition = "2018"
publish = false
license = "MIT OR Apache-2.0"

[dependencies]
configuration-derive = { path = "../../agent/configuration-derive"}
builder-derive = { path = "../../agent/builder-derive"}
model = { version = "0.0.2", path = "../../model" }
model = { version = "0.0.3", path = "../../model" }
serde = "1"
serde_plain = "1"
serde_yaml = "0.8"
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cli"
version = "0.0.2"
version = "0.0.3"
edition = "2021"
publish = false
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions controller/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "controller"
version = "0.0.2"
version = "0.0.3"
edition = "2021"
publish = false
license = "MIT OR Apache-2.0"
Expand All @@ -15,7 +15,7 @@ kube = { version = "0.75", default-features = true, features = ["derive"] }
kube-runtime = "0.75"
lazy_static = "1"
log = "0.4"
model = { version = "0.0.2", path = "../model" }
model = { version = "0.0.3", path = "../model" }
schemars = "=0.8.10"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
Expand Down
4 changes: 2 additions & 2 deletions model/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "model"
version = "0.0.2"
version = "0.0.3"
edition = "2021"
publish = false
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -31,7 +31,7 @@ tokio-util = "0.7"
topological-sort = "0.2"

[dev-dependencies]
selftest = { version = "0.0.2", path = "../selftest" }
selftest = { version = "0.0.3", path = "../selftest" }
tokio = { version = "1", features = ["macros"] }

[features]
Expand Down
Loading