File tree Expand file tree Collapse file tree 6 files changed +9
-13
lines changed
Expand file tree Collapse file tree 6 files changed +9
-13
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ build fission-workflows fission-workflows-bundle fission-workflows-proxy:
1111 # TODO toggle between container and local build, support parameters, seperate cli and bundle
1212 build/build.sh
1313
14- generate : ${PROTO_TARGETS} pkg/version/version.gen.go examples/workflows-env.yaml pkg/api/events/events.gen.go
14+ generate : ${PROTO_TARGETS} examples/workflows-env.yaml pkg/api/events/events.gen.go
1515
1616prepush : generate verify test
1717
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ while [[ $# -gt 0 ]]; do
3838 output_cli=$2
3939 shift
4040 ;;
41- --output-cli )
41+ --output-proxy )
4242 output_proxy=$2
4343 shift
4444 ;;
Original file line number Diff line number Diff line change @@ -113,9 +113,7 @@ spec:
113113 targetPort : 5555
114114 protocol : TCP
115115---
116- #
117116# Fission integration
118- #
119117apiVersion : fission.io/v1
120118kind : Environment
121119metadata :
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ fission:
3333 env :
3434 name : workflow
3535 ns : default
36- runtimeImage : fission/fission- workflows-proxy
36+ runtimeImage : fission/workflows-proxy
3737 builderImage : fission/workflow-build-env
3838
3939# Tracing-related configuration
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ apiVersion: apps/v1
55kind : Deployment
66metadata :
77 name : workflows
8- namespace : default
8+ namespace : fission
99 labels :
1010 chart : " fission-workflows-0.6.0"
1111spec :
@@ -62,7 +62,7 @@ apiVersion: v1
6262kind : Service
6363metadata :
6464 name : workflows
65- namespace : default
65+ namespace : fission
6666 labels :
6767 svc : workflows
6868 chart : " fission-workflows-0.6.0"
@@ -86,7 +86,7 @@ apiVersion: v1
8686kind : Service
8787metadata :
8888 name : workflows-apiserver
89- namespace : default
89+ namespace : fission
9090 labels :
9191 svc : workflows
9292 chart : " fission-workflows-0.6.0"
@@ -104,9 +104,7 @@ spec:
104104 targetPort : 5555
105105 protocol : TCP
106106---
107- #
108107# Fission integration
109- #
110108apiVersion : fission.io/v1
111109kind : Environment
112110metadata :
@@ -119,13 +117,13 @@ spec:
119117 TerminationGracePeriod : 5
120118 allowedFunctionsPerContainer : infinite
121119 runtime :
122- image : " fission/fission- workflows-proxy:0.6.0"
120+ image : " fission/workflows-proxy:0.6.0"
123121 container :
124122 command : ["/fission-workflows-proxy"]
125123 imagePullPolicy : IfNotPresent
126124 args : [
127125 " --test" ,
128- " --target" , "workflows.default :5555",
126+ " --target" , "workflows.fission :5555",
129127 " --port" , "8888",
130128 ]
131129 builder :
Original file line number Diff line number Diff line change @@ -6,6 +6,6 @@ TARGET=examples/workflows-env.yaml
66
77echo ' # An Kubernetes example template of a Fission Workflow deployment as an environment in Fission' > ${TARGET}
88
9- helm template --set fission.env.name=workflows charts/fission-workflows/ >> ${TARGET}
9+ helm template --namespace fission -- set fission.env.name=workflows charts/fission-workflows/ >> ${TARGET}
1010
1111echo " Created ${TARGET} "
You can’t perform that action at this time.
0 commit comments