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

fix(ci): Revert update k8s-e2e to use new helm chart #10566

Merged
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
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!("vector-{}", id)
format!("test-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.";
let expected_pat = "INFO vector::app: Log level is enabled. level=\"info\"\n";
assert!(
first_line.contains(expected_pat),
first_line.ends_with(expected_pat),
"Expected a line ending with {:?} but got {:?}; vector might be malfunctioning",
expected_pat,
first_line
Expand Down
Loading