Skip to content

Commit

Permalink
Chart for v1.20.0-rc2 release (#77)
Browse files Browse the repository at this point in the history
* Chart for v1.20.0-rc2 release
* Update keda connectors images

---------

Signed-off-by: Sanket Sudake <sanketsudake@gmail.com>
  • Loading branch information
sanketsudake authored Nov 27, 2023
1 parent 1bc4caf commit 2d24ad1
Show file tree
Hide file tree
Showing 11 changed files with 21 additions and 285 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.0-rc1
appVersion: v1.20.0-rc1
version: v1.20.0-rc2
appVersion: v1.20.0-rc2
description: Fission is a fast serverless framework for Kubernetes.
home: https://fission.io/
icon: https://fission.io/images/fission-logo-white.svg
Expand Down
18 changes: 0 additions & 18 deletions charts/fission-all/templates/_fission-component-roles.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -50,24 +50,6 @@ rules:
- patch
- delete
{{- end }}
{{- define "kafka-rules" }}
rules:
- apiGroups:
- fission.io
resources:
- environments
- functions
- messagequeuetriggers
- packages
verbs:
- create
- get
- list
- watch
- update
- patch
- delete
{{- end }}
{{- define "keda-rules" }}
rules:
- apiGroups:
Expand Down
48 changes: 0 additions & 48 deletions charts/fission-all/templates/_fission-kubernetes-roles.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -195,54 +195,6 @@ rules:
- list
- watch
{{- end }}
{{- define "kafka-kuberules" }}
rules:
- apiGroups:
- ""
resources:
- configmaps
- pods
- secrets
- services
- replicationcontrollers
- events
verbs:
- create
- delete
- get
- list
- watch
- patch
- apiGroups:
- ""
resources:
- configmaps
- secrets
verbs:
- get
- apiGroups:
- apps
resources:
- deployments
- deployments/scale
- replicasets
verbs:
- create
- get
- list
- watch
- update
- patch
- delete
- apiGroups:
- apiextensions.k8s.io
resources:
- customresourcedefinitions
verbs:
- get
- list
- watch
{{- end }}
{{- define "keda-kuberules" }}
rules:
- apiGroups:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ metadata:
{{- if eq "kubewatcher" .component }}
{{- include "kubewatcher-kuberules" . }}
{{- end }}
{{- if eq "kafka" .component }}
{{- include "kafka-kuberules" . }}
{{- end }}
{{- if eq "keda" .component }}
{{- include "keda-kuberules" . }}
{{- end }}
Expand Down
3 changes: 0 additions & 3 deletions charts/fission-all/templates/_fission-role-generator.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ metadata:
{{- if eq "kubewatcher" .component }}
{{- include "kubewatcher-rules" . }}
{{- end }}
{{- if eq "kafka" .component }}
{{- include "kafka-rules" . }}
{{- end }}
{{- if eq "keda" .component }}
{{- include "keda-rules" . }}
{{- end }}
Expand Down
108 changes: 0 additions & 108 deletions charts/fission-all/templates/mqt-fission-kafka/deployment.yaml

This file was deleted.

23 changes: 0 additions & 23 deletions charts/fission-all/templates/mqt-fission-kafka/podmonitor.yaml

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

80 changes: 19 additions & 61 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.0-rc1
imageTag: v1.20.0-rc2

## pullPolicy represents the pull policy to use for images in the chart.
##
Expand Down Expand Up @@ -99,7 +99,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.0-rc1
imageTag: v1.20.0-rc2

## 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 @@ -459,48 +459,6 @@ timer:
runAsUser: 10001
runAsGroup: 10001

## Kafka: enable and configure the details
##
kafka:
enabled: false
## note: below link is only for reference.
## Please use the brokers link for your kafka here.
##
brokers: "broker.kafka:9092" # or your-bootstrap-server.kafka:9092/9093
## Sample config for authentication
## authentication:
## tls:
## enabled: true
## caCert: 'auth/kafka/ca.crt'
## userCert: 'auth/kafka/user.crt'
## userKey: 'auth/kafka/user.key'
##
authentication:
tls:
enabled: false
## InsecureSkipVerify controls whether a client verifies the server's certificate chain and host name.
## Warning: Setting this to true, makes TLS susceptible to man-in-the-middle attacks
##
insecureSkipVerify: false
## path to certificate containing public key of CA authority
##
caCert: ""
## path to certificate containing public key of the user signed by CA authority
##
userCert: ""
## path to private key of the user
##
userKey: ""

## version of Kafka broker
## For 0.x it must be a string in the format
## "major.minor.veryMinor.patch" example: 0.8.2.0
## For 1.x it must be a string in the format
## "major.major.veryMinor" example: 2.0.1
## Should be >= 0.11.2.0 to enable Kafka record headers support
##
# version: "0.11.2.0"

# The following components expose Prometheus metrics and have servicemonitors in this chart (disabled by default)
# router, executor, storage svc
serviceMonitor:
Expand Down Expand Up @@ -656,7 +614,7 @@ preUpgradeChecks:
image: fission/pre-upgrade-checks
## pre-install/pre-upgrade checks image version
##
imageTag: v1.20.0-rc1
imageTag: v1.20.0-rc2

## Fission post-install/post-upgrade reporting live in this image
##
Expand Down Expand Up @@ -787,29 +745,29 @@ mqt_keda:
enabled: true
connector_images:
kafka:
image: fission/keda-kafka-http-connector
tag: v0.12
image: ghcr.io/fission/keda-kafka-http-connector
tag: v0.13
rabbitmq:
image: fission/keda-rabbitmq-http-connector
tag: v0.10
image: ghcr.io/fission/keda-rabbitmq-http-connector
tag: v0.11
awskinesis:
image: fission/keda-aws-kinesis-http-connector
tag: v0.10
aws_sqs:
image: fission/keda-aws-sqs-http-connector
image: ghcr.io/fission/keda-aws-kinesis-http-connector
tag: v0.11
aws_sqs:
image: ghcr.io/fission/keda-aws-sqs-http-connector
tag: v0.12
nats_steaming:
image: fission/keda-nats-streaming-http-connector
tag: v0.13
image: ghcr.io/fission/keda-nats-streaming-http-connector
tag: v0.14
nats_jetstream:
image: fission/keda-nats-jetstream-http-connector
tag: v0.4
image: ghcr.io/fission/keda-nats-jetstream-http-connector
tag: v0.5
gcp_pubsub:
image: fission/keda-gcp-pubsub-http-connector
tag: v0.6
image: ghcr.io/fission/keda-gcp-pubsub-http-connector
tag: v0.7
redis:
image: fission/keda-redis-http-connector
tag: v0.3
image: ghcr.io/fission/keda-redis-http-connector
tag: v0.4

## Pod resources as:
## resources:
Expand Down

0 comments on commit 2d24ad1

Please sign in to comment.