Skip to content

Commit

Permalink
Release v1.20.4 (#98)
Browse files Browse the repository at this point in the history
Signed-off-by: Md Soharab Ansari <[email protected]>
  • Loading branch information
soharab-ic authored Sep 2, 2024
1 parent 9b80ae7 commit 2641c0e
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 10 deletions.
4 changes: 2 additions & 2 deletions charts/fission-all/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: fission-all
version: v1.20.3
appVersion: v1.20.3
version: v1.20.4
appVersion: v1.20.4
description: Fission is a fast serverless framework for Kubernetes.
kubeVersion: ">=1.25.0-0"
home: https://fission.io/
Expand Down
5 changes: 2 additions & 3 deletions charts/fission-all/templates/fluentbit/fluentbit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ spec:
fieldRef:
apiVersion: v1
fieldPath: spec.nodeName
{{- include "fission-resource-namespace.envs" . | indent 12 }}
command: ["/fission-bundle"]
args: ["--logger"]
volumeMounts:
Expand All @@ -127,10 +128,8 @@ spec:
- name: docker-log
mountPath: /var/lib/docker/containers
readOnly: true
{{- if .Values.logger.enableSecurityContext }}
securityContext:
privileged: true
{{- end }}
{{- toYaml .Values.logger.securityContext | nindent 12 }}
- name: fluentbit
{{- if .Values.repository }}
image: "{{ .Values.logger.fluentdImageRepository }}/{{ .Values.logger.fluentdImage }}:{{ .Values.logger.fluentdImageTag }}"
Expand Down
21 changes: 16 additions & 5 deletions charts/fission-all/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ image: fission/fission-bundle
## It is also used by the chart to identify version of the few more images apart from fission-bundle.
## Keep it empty for using latest tag.
##
imageTag: v1.20.3
imageTag: v1.20.4

## pullPolicy represents the pull policy to use for images in the chart.
##
Expand Down Expand Up @@ -106,7 +106,7 @@ fetcher:
## image represents the image of the fetcher component.
image: fission/fetcher
## imageTag represents the tag of the image of the fetcher component.
imageTag: v1.20.3
imageTag: v1.20.4

## Fetcher is only for to downloading or uploading archive.
## Normally, you don't need to change the value here, unless necessary.
Expand Down Expand Up @@ -620,11 +620,22 @@ logger:

## Fluent-bit writes/reads it’s own sqlite database to record a history of tracked
## files and a state of offsets, this is very useful to resume a state if the ser-
## vice is restarted. For Kubernetes environment with constraints like OpenShift,
## vice is restarted.
##
## For Kubernetes environment with constraints like OpenShift,
## the containers are limited to write hostPath volume. Hence, we have to enable
## security context and set privileged to true.
##
enableSecurityContext: false
## The user ID in runAsUser should have access to the `/var/log` and
## `/var/lib/docker/containers` directories on your host.
## On many hosts, this user might be root ,i.e., `runAsUser: 0`.
## Although it is recommended not to use root user for security reasons.
##
## The `/var/log` and `/var/lib/docker/containers` directories on host are mounted
## to logger container with volumeType `HostPath`.
securityContext: {}
# privileged: true
# runAsUser: 0

## Enable PodSecurityPolicies to allow privileged container
## Only required in some clusters and when enableSecurityContext is true
Expand Down Expand Up @@ -663,7 +674,7 @@ preUpgradeChecks:
image: fission/pre-upgrade-checks
## pre-install/pre-upgrade checks image version
##
imageTag: v1.20.3
imageTag: v1.20.4

## Fission post-install/post-upgrade reporting live in this image
##
Expand Down

0 comments on commit 2641c0e

Please sign in to comment.