diff --git a/charts/fission-all/templates/deployment.yaml b/charts/fission-all/templates/deployment.yaml index 7fc1b96e..f13da361 100644 --- a/charts/fission-all/templates/deployment.yaml +++ b/charts/fission-all/templates/deployment.yaml @@ -1178,6 +1178,8 @@ spec: value: "{{ .Values.mqt_keda.connector_images.nats_steaming.image }}:{{ .Values.mqt_keda.connector_images.nats_steaming.tag }}" - name: GCP-PUB-SUB_IMAGE value: "{{ .Values.mqt_keda.connector_images.gcp_pub_sub.image }}:{{ .Values.mqt_keda.connector_images.gcp_pub_sub.tag }}" + - name: REDIS_IMAGE + value: "{{ .Values.mqt_keda.connector_images.redis.image }}:{{ .Values.mqt_keda.connector_images.redis.tag }}" serviceAccountName: fission-svc {{- if .Values.extraCoreComponentPodConfig }} {{ toYaml .Values.extraCoreComponentPodConfig | indent 6 -}} diff --git a/charts/fission-all/values.yaml b/charts/fission-all/values.yaml index 850a56f7..7f4fd0d2 100644 --- a/charts/fission-all/values.yaml +++ b/charts/fission-all/values.yaml @@ -140,7 +140,7 @@ router: ## Sample with a rate per time window (traces/second) traceSamplingRate: 0.5 - + ## Extend the container specs for the core fission pods. ## Can be used to add things like affinty/tolerations/nodeSelectors/etc. ## For example: @@ -219,7 +219,6 @@ kafka: userCert: "" # path to certificate containing public key of the user signed by CA authority userKey: "" # path to private key of the user - # brokers: 'my-broker.kafka:9092' # or my-bootstrap-server.kafka:9092/9093 # Sample config for authentication # authentication: @@ -349,7 +348,7 @@ openTracing: ## if enabled is true, the variable is endpoint of Jaeger collector in the format shown below #collectorEndpoint: "http://jaeger-collector.jaeger.svc:14268/api/traces?format=jaeger.thrift" - + ## uniformly sample traces with the given probabilistic sampling rate #samplingRate: 0.75 @@ -380,6 +379,9 @@ mqt_keda: gcp_pub_sub: image: fission/keda-gcp-pubsub-http-connector tag: v0.2 + redis: + image: fission/keda-redis-http-connector + tag: v0.1 ## Enable Pprof based profiling pprof: diff --git a/charts/fission-core/templates/deployment.yaml b/charts/fission-core/templates/deployment.yaml index f2599c9a..c71aae45 100644 --- a/charts/fission-core/templates/deployment.yaml +++ b/charts/fission-core/templates/deployment.yaml @@ -526,6 +526,8 @@ spec: value: "{{ .Values.mqt_keda.connector_images.nats_steaming.image }}:{{ .Values.mqt_keda.connector_images.nats_steaming.tag }}" - name: GCP-PUB-SUB_IMAGE value: "{{ .Values.mqt_keda.connector_images.gcp_pub_sub.image }}:{{ .Values.mqt_keda.connector_images.gcp_pub_sub.tag }}" + - name: REDIS_IMAGE + value: "{{ .Values.mqt_keda.connector_images.redis.image }}:{{ .Values.mqt_keda.connector_images.redis.tag }}" serviceAccountName: fission-svc {{- if .Values.extraCoreComponentPodConfig }} {{ toYaml .Values.extraCoreComponentPodConfig | indent 6 -}} diff --git a/charts/fission-core/values.yaml b/charts/fission-core/values.yaml index b2f1211d..ef6b01c1 100644 --- a/charts/fission-core/values.yaml +++ b/charts/fission-core/values.yaml @@ -108,7 +108,7 @@ router: ## Sample with a rate per time window (traces/second) traceSamplingRate: 0.5 - + ## Extend the container specs for the router fission pods. ## Can be used to add things like affinty/tolerations/nodeSelectors/etc. ## For example: @@ -238,7 +238,7 @@ openTracing: ## if enabled is true, the variable is endpoint of Jaeger collector in the format shown below #collectorEndpoint: "http://jaeger-collector.jaeger.svc:14268/api/traces?format=jaeger.thrift" - + ## uniformly sample traces with the given probabilistic sampling rate #samplingRate: 0.75 @@ -269,3 +269,6 @@ mqt_keda: gcp_pub_sub: image: fission/keda-gcp-pubsub-http-connector tag: v0.2 + redis: + image: fission/keda-redis-http-connector + tag: v0.1