Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating container spec to include container name. #264

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/fission-workflows/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: fission-workflows
version: 0.6.0
version: 0.6.1
appVersion: 0.6.0
description: Fission Workflows is a fast workflow engine for serverless functions on Kubernetes
keywords:
Expand Down
3 changes: 2 additions & 1 deletion charts/fission-workflows/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,11 +124,11 @@ metadata:
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
spec:
version: 2
TerminationGracePeriod: 5
allowedFunctionsPerContainer: infinite
runtime:
image: "{{ .Values.fission.env.runtimeImage }}:{{.Values.tag}}"
container:
name: {{ .Values.fission.env.containerName }}
command: ["/fission-workflows-proxy"]
imagePullPolicy: {{ .Values.pullPolicy }}
args: [
Expand All @@ -143,4 +143,5 @@ spec:
image: "{{ .Values.fission.env.builderImage }}:{{.Values.tag}}"
command: "defaultBuild"
container:
name: {{ .Values.fission.env.containerName }}
imagePullPolicy: {{ .Values.pullPolicy }}
1 change: 1 addition & 0 deletions charts/fission-workflows/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ fission:
env:
name: workflow
ns: default
containerName: workflow
runtimeImage: fission/workflows-proxy
builderImage: fission/workflow-build-env

Expand Down