-
Hello, is there any example on how to configure this datasource with yaml file? I'd like something like: apiVersion: 1
datasources:
- name: cassandra
type: "Apache Cassandra"
url: cassandra:9032
access: proxy
... Could you please help me? |
Beta Was this translation helpful? Give feedback.
Answered by
elehcim
Oct 14, 2024
Replies: 1 comment
-
I found out that this is a possible one (note the apiVersion: 1
datasources:
- name: Cassandra
type: hadesarchitect-cassandra-datasource
access: proxy
url: http://cassandra:9042
isDefault: false
jsonData:
authType: "none" # Options: none, basic
consistency: "ONE" # Optional: Consistency level (e.g., ONE, QUORUM)
defaultKeyspace: "mykeyspace" |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
elehcim
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I found out that this is a possible one (note the
type
field):