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
Unanswered
Hi! Could Someone Clarify If There Is A Way To Get The Credentials Without Going To The Ui -> "Workspace" And Click "Create New Credentials" And Use The Value Provided? Like A Api Call?


So im setting the server like this:

            global:
              defaultStorageClass: $STORAGE_CLASS

            apiserver:
              replicaCount: 1
              resources:
                requests:
                  cpu: "200m"
                  memory: "512Mi"
                limits:
                  cpu: "2000m"
                  memory: "4Gi"
              service:
                type: NodePort
                nodePort: 30008
                port: 8008
              additionalConfigs:
                secure.conf: |
                  {
                      "http": {
                          "session_secret": {
                              "apiserver": "V8gcW3EneNDcNfO7G_TSUsWe7uLozyacc9_I33o7bxUo8rCN31VLRg"
                          }
                      },
                      "auth": {
                          "fixed_users": {
                              "enabled": true,
                              "pass_hashed": false,
                              "users": [
                                  {"username": "admin", "password": "$ADMIN_PASS", "name": "Administrator"},
                                  {"username": "user1", "password": "clearml456!", "name": "Regular User"}
                              ]
                          },
                          "token_secret": "AAAAAA"
                      }
                  }

            webserver:
              replicaCount: 1
              resources:
                requests:
                  cpu: "100m"
                  memory: "256Mi"
                limits:
                  cpu: "1000m"
                  memory: "2Gi"
              service:
                type: NodePort
                nodePort: 30080
                port: 8080

            fileserver:
              replicaCount: 1
              resources:
                requests:
                  cpu: "100m"
                  memory: "256Mi"
                limits:
                  cpu: "1000m"
                  memory: "2Gi"
              service:
                type: NodePort
                nodePort: 30081
                port: 8081
              storage:
                data:
                  class: $STORAGE_CLASS
                  size: 50Gi

            ingress:
              enabled: false

            elasticsearch:
              enabled: true
              master:
                replicas: 1
                persistence:
                  enabled: true
                  storageClass: $STORAGE_CLASS
                  size: 20Gi
              data:
                replicas: 1
                persistence:
                  enabled: true
                  storageClass: $STORAGE_CLASS
                  size: 50Gi

            mongodb:
              enabled: true
              replicaCount: 1
              persistence:
                enabled: true
                storageClass: $STORAGE_CLASS
                size: 20Gi

            redis:
              enabled: true
              master:
                persistence:
                  enabled: true
                  storageClass: $STORAGE_CLASS
                  size: 10Gi
  
  
Posted one month ago
41 Views
0 Answers
one month ago
one month ago