Skip to content

Commit f598fa4

Browse files
authored
chore: add tasks related images to func environment (knative#2839)
1 parent 15b30dc commit f598fa4

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

cmd/environment.go

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import (
1616
"knative.dev/func/pkg/config"
1717
"knative.dev/func/pkg/functions"
1818
"knative.dev/func/pkg/k8s"
19+
"knative.dev/func/pkg/pipelines/tekton"
1920
)
2021

2122
var format string = "json"
@@ -60,6 +61,10 @@ type Environment struct {
6061
SpecVersion string
6162
SocatImage string
6263
TarImage string
64+
FuncUtilsImage string
65+
DeployerImage string
66+
ScaffoldImage string
67+
S2IImage string
6368
Languages []string
6469
DefaultImageBuilders map[string]map[string]string
6570
Templates map[string][]string
@@ -128,6 +133,10 @@ func runEnvironment(cmd *cobra.Command, newClient ClientFactory, v *Version) (er
128133
SpecVersion: functions.LastSpecVersion(),
129134
SocatImage: k8s.SocatImage,
130135
TarImage: k8s.TarImage,
136+
FuncUtilsImage: tekton.FuncUtilImage,
137+
DeployerImage: tekton.DeployerImage,
138+
ScaffoldImage: tekton.ScaffoldImage,
139+
S2IImage: tekton.S2IImage,
131140
Languages: r,
132141
DefaultImageBuilders: builderimagesdefault,
133142
Templates: t,

0 commit comments

Comments
 (0)