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