Skip to content

DO NOT SUBMIT: test https://github.com/kubernetes/kubernetes/pull/130612 #1982

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

Closed
wants to merge 1 commit into from
Closed
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
11 changes: 11 additions & 0 deletions test/k8s-integration/driver-config.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@ package main

import (
"bufio"
"bytes"
"fmt"
"os"
"path/filepath"
"strings"
"text/template"

"k8s.io/klog/v2"
)

type driverConfig struct {
Expand Down Expand Up @@ -169,5 +172,13 @@ func generateDriverConfigFile(testParams *testParameters) (string, error) {
return "", err
}

// Also print the config file
var strBuf bytes.Buffer
err = t.Execute(&strBuf, params)
if err != nil {
klog.Warningf("Failed to print storage test config file: %v", err)
}
klog.Infof("Executing test with the following config:\n%v", strBuf.String())

return configFilePath, nil
}