Skip to content

Commit 52d9992

Browse files
authored
Merge pull request #226 from fission/0.6.0-2
Script and helm updates for 0.6.0 release
2 parents 7b32398 + eca035f commit 52d9992

File tree

6 files changed

+9
-13
lines changed

6 files changed

+9
-13
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

1616
prepush: generate verify test
1717

build/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
;;

charts/fission-workflows/templates/deployment.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,7 @@ spec:
113113
targetPort: 5555
114114
protocol: TCP
115115
---
116-
#
117116
# Fission integration
118-
#
119117
apiVersion: fission.io/v1
120118
kind: Environment
121119
metadata:

charts/fission-workflows/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

examples/workflows-env.yaml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ apiVersion: apps/v1
55
kind: Deployment
66
metadata:
77
name: workflows
8-
namespace: default
8+
namespace: fission
99
labels:
1010
chart: "fission-workflows-0.6.0"
1111
spec:
@@ -62,7 +62,7 @@ apiVersion: v1
6262
kind: Service
6363
metadata:
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
8686
kind: Service
8787
metadata:
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-
#
110108
apiVersion: fission.io/v1
111109
kind: Environment
112110
metadata:
@@ -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:

hack/codegen-helm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ TARGET=examples/workflows-env.yaml
66

77
echo '# 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

1111
echo "Created ${TARGET}"

0 commit comments

Comments
 (0)