Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
I Do Have One Questions About Using The Helm Chart, Is There Any Way To Specify The Users In The Values.Yaml?

I do have one questions about using the helm chart, is there any way to specify the users in the values.yaml?

  
  
Posted one year ago
Votes Newest

Answers 4


great! thanks a lot!

  
  
Posted one year ago

and one more question, in the values, I also see the values for the default tokens:

credentials: apiserver: # -- Set for apiserver_key field accessKey: "5442F3443MJMORWZA3ZH" # -- Set for apiserver_secret field secretKey: "BxapIRo9ZINi8x25CRxz8Wdmr2pQjzuWVB4PNASZqCtTyWgWVQ" tests: # -- Set for tests_user_key field accessKey: "ENP39EQM4SLACGD5FXB7" # -- Set for tests_user_secret field secretKey: "lPcm0imbcBZ8mwgO7tpadutiS3gnJD05x9j7afwXPS35IKbpiQ"what kind of token are they? shall I produce them with some specific procedures, or they are just random strings?

Also is it the same if I provide them as environment variable? It would be better to us so that we don't have to store them in some places

  
  
Posted one year ago

You can provide them as env vars, and you can generate them randomly - please make sure to use only a-zA-Z0-9 chars

  
  
Posted one year ago