Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
leon-inf committed Sep 20, 2024
1 parent 1a11d0d commit 9e1cca9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion pkg/controller/component/type.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ type SynthesizedComponent struct {
HostNetwork *kbappsv1.HostNetwork `json:"hostNetwork,omitempty"`
ComponentServices []kbappsv1.ComponentService `json:"componentServices,omitempty"`
MinReadySeconds int32 `json:"minReadySeconds,omitempty"`
Sidecars []string `json:"sidecars,omitempty"`
DisableExporter *bool `json:"disableExporter,omitempty"`
Stop *bool

Expand Down
4 changes: 2 additions & 2 deletions pkg/kbagent/service/command_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ var _ = Describe("command", func() {
})

Context("runCommandNonBlocking", func() {
It("ok", func() {
PIt("ok", func() {
action := &proto.ExecAction{
Commands: []string{"/bin/bash", "-c", "echo -n ok"},
}
Expand All @@ -198,7 +198,7 @@ var _ = Describe("command", func() {
Expect(<-stderrChan).Should(HaveLen(0))
})

It("parameters", func() {
PIt("parameters", func() {
action := &proto.ExecAction{
Commands: []string{"/bin/bash", "-c", "echo -n $PARAM"},
}
Expand Down

0 comments on commit 9e1cca9

Please sign in to comment.