Skip to content

Commit

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

This reverts commit 738e6c2.
  • Loading branch information
jszwedko authored Dec 22, 2021
1 parent 738e6c2 commit 0b682ad
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 0b682ad

Please sign in to comment.