Skip to content

Commit

Permalink
chore: Update k8s-e2e to use new helm chart (#10521)
Browse files Browse the repository at this point in the history
* chore: Update k8s-e2e to use new helm chart

Signed-off-by: Spencer Gilbert <spencer.gilbert@datadoghq.com>

* chore: Update k8s-e2e framework to allow for release name customization

Signed-off-by: Spencer Gilbert <spencer.gilbert@datadoghq.com>

* chore: Update vector to vector integration to new chart

Signed-off-by: Spencer Gilbert <spencer.gilbert@datadoghq.com>
  • Loading branch information
spencergilbert authored Dec 21, 2021
1 parent 089fdab commit 1cd6548
Show file tree
Hide file tree
Showing 8 changed files with 264 additions and 400 deletions.
6 changes: 3 additions & 3 deletions lib/k8s-e2e-tests/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ pub fn get_namespace() -> String {
.map(|num| (num as char).to_ascii_lowercase())
.collect();

format!("test-vector-{}", id)
format!("vector-{}", id)
}

pub fn get_namespace_appended(namespace: &str, suffix: &str) -> String {
Expand Down Expand Up @@ -236,9 +236,9 @@ pub async fn smoke_check_first_line(log_reader: &mut Reader) {
.read_line()
.await
.expect("unable to read first line");
let expected_pat = "INFO vector::app: Log level is enabled. level=\"info\"\n";
let expected_pat = "INFO vector::app: Log level is enabled.";
assert!(
first_line.ends_with(expected_pat),
first_line.contains(expected_pat),
"Expected a line ending with {:?} but got {:?}; vector might be malfunctioning",
expected_pat,
first_line
Expand Down
Loading

0 comments on commit 1cd6548

Please sign in to comment.