Skip to content

Commit dc25fdb

Browse files
ShobhitSingh11Harness
authored andcommitted
feat: [PIPE-29761]: Added log streaming opening and closing parameters for kubernetes and VM LE (#1)
* 5fa1b8 feat: [PIPE-29761]: Added log streaming opening and closing parameters for kubernetes and VM LE
1 parent ba93a2e commit dc25fdb

File tree

3 files changed

+34
-13
lines changed

3 files changed

+34
-13
lines changed

k8s-engine-commons/gen/go/proto/execution.pb.go

Lines changed: 31 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

k8s-engine-commons/proto/execution.proto

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,8 @@ message UnitStep {
165165
uint32 container_port = 14; // Port of the container on which step needs to be executed
166166
map<string, string> connector_secrets = 18; // The secrets which will be added at step execution
167167
repeated string runtime_secrets = 17;
168+
bool skip_opening_stream = 19;
169+
bool skip_closing_stream = 20;
168170
}
169171

170172
message ParallelStep {

task/types.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ type Logger struct {
4747
Account string `json:"account"`
4848
IndirectUpload bool `json:"indirect_upload"`
4949
SkipOpeningStream bool `json:"skip_opening_stream"`
50+
SkipClosingStream bool `json:"skip_closing_stream"`
5051
TrimNewLineSuffix bool `json:"trim_new_line_suffix"`
5152
IncreaseLogLimit bool `json:"increase_log_limit"`
5253
Masks []string `json:"masks"`

0 commit comments

Comments
 (0)