Skip to content

Commit

Permalink
[releaese-1.8] include image sha in func version (#1467)
Browse files Browse the repository at this point in the history
* fix(GHSA-5336-2g3f-9g3m): Fixes GSA GHSA-5336-2g3f-9g3m (#1442)

Ensures that all trusted builder image prefixes end in a slash so that registry identifiers can't be spoofed with name extensions.

/kind fix

Signed-off-by: Lance Ball <lball@redhat.com>

* fix: make socat image public and remove socat image env (#1384)

* chore: verbose version to display image ref

Signed-off-by: Lance Ball <lball@redhat.com>
Co-authored-by: Jefferson Ramos <jeramos@redhat.com>
  • Loading branch information
lance and jrangelramos committed Dec 13, 2022
1 parent d14e6be commit 7552b91
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 23 deletions.
8 changes: 7 additions & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import (
"time"

"knative.dev/func/cmd/templates"
"knative.dev/func/k8s"

"github.com/ory/viper"
"github.com/spf13/cobra"
Expand Down Expand Up @@ -361,7 +362,12 @@ func (v Version) StringVerbose() string {
if date == "" {
date = time.Now().Format(time.RFC3339)
}
return fmt.Sprintf("%s-%s-%s", vers, hash, date)
funcVersion := fmt.Sprintf("%s-%s-%s", vers, hash, date)
return fmt.Sprintf("Version: %s\n"+
"SocatImage: %s\n"+
"TarImage: %s", funcVersion,
k8s.SocatImage,
k8s.TarImage)
}

// surveySelectDefault returns 'value' if defined and exists in 'options'.
Expand Down
36 changes: 22 additions & 14 deletions cmd/root_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -209,24 +209,28 @@ func TestRoot_CommandNameParameterized(t *testing.T) {

func TestVerbose(t *testing.T) {
tests := []struct {
name string
args []string
want string
name string
args []string
want string
wantLF int
}{
{
name: "verbose as version's flag",
args: []string{"version", "-v"},
want: "v0.42.0-cafe-1970-01-01\n",
name: "verbose as version's flag",
args: []string{"version", "-v"},
want: "Version: v0.42.0-cafe-1970-01-01",
wantLF: 3,
},
{
name: "no verbose",
args: []string{"version"},
want: "v0.42.0\n",
name: "no verbose",
args: []string{"version"},
want: "v0.42.0",
wantLF: 1,
},
{
name: "verbose as root's flag",
args: []string{"--verbose", "version"},
want: "v0.42.0-cafe-1970-01-01\n",
name: "verbose as root's flag",
args: []string{"--verbose", "version"},
want: "Version: v0.42.0-cafe-1970-01-01",
wantLF: 3,
},
}
for _, tt := range tests {
Expand All @@ -249,8 +253,12 @@ func TestVerbose(t *testing.T) {
t.Fatal(err)
}

if out.String() != tt.want {
t.Errorf("expected output: %q but got: %q", tt.want, out.String())
outLines := strings.Split(out.String(), "\n")
if len(outLines)-1 != tt.wantLF {
t.Errorf("expected output with %v line breaks but got %v:", tt.wantLF, len(outLines)-1)
}
if outLines[0] != tt.want {
t.Errorf("expected output: %q but got: %q", tt.want, outLines[0])
}
})
}
Expand Down
10 changes: 2 additions & 8 deletions k8s/dialer.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import (
"fmt"
"io"
"net"
"os"
"sync"
"time"

Expand All @@ -23,7 +22,7 @@ import (
"k8s.io/client-go/tools/remotecommand"
)

var socatImage = "quay.io/boson/alpine-socat:1.7.4.3-r1-non-root"
var SocatImage = "quay.io/boson/alpine-socat:1.7.4.3-r1-non-root"

// NewInClusterDialer creates context dialer that will dial TCP connections via POD running in k8s cluster.
// This is useful when accessing k8s services that are not exposed outside cluster (e.g. openshift image registry).
Expand Down Expand Up @@ -129,11 +128,6 @@ func (c *contextDialer) startDialerPod(ctx context.Context) (err error) {
}
}()

img := socatImage
if i, ok := os.LookupEnv("SOCAT_IMAGE"); ok {
img = i
}

pod := &coreV1.Pod{
ObjectMeta: metaV1.ObjectMeta{
Name: c.podName,
Expand All @@ -144,7 +138,7 @@ func (c *contextDialer) startDialerPod(ctx context.Context) (err error) {
Containers: []coreV1.Container{
{
Name: c.podName,
Image: img,
Image: SocatImage,
Stdin: true,
StdinOnce: true,
Command: []string{"socat", "-u", "-", "OPEN:/dev/null"},
Expand Down

0 comments on commit 7552b91

Please sign in to comment.