danhuawang commented on code in PR #6599: URL: https://github.com/apache/gravitino/pull/6599#discussion_r1997862708
########## dev/charts/gravitino/values.yaml: ########## @@ -0,0 +1,208 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# +image: + repository: apache/gravitino + tag: 0.9.0-incubating-SNAPSHOT + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets (secrets must be manually created in the namespace) + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## Example: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + +# Deploy mysql on K8S cluster as gravitino storage backend. +mysql: + enabled: false + image: + pullSecrets: [] + initdbScriptsConfigMap: gravitino-mysql-init + auth: + rootPassword: "admin" + createDatabase: true + database: "gravitino" + username: "gravitino" + password: "gravitino" + +# Use H2 as the default embedded database, or set up an external database for enhanced scalability and performance. +# schema-0.*.0-mysql.sql is the data init script that should be executed in the external database manually. +entity: + store: "relational" + maxTransactionSkewTimeMs: 2000 + deleteAfterTimeMs: 604800000 + versionRetentionCount: 1 + relationalBackend: "JDBCBackend" + jdbcUrl: jdbc:h2 + jdbcDriver: org.h2.Driver + jdbcUser: gravitino + jdbcPassword: gravitino + storagePath: /root/gravitino/data + +server: + shutdownTimeout: 3000 + rest: + extensionPackages: "" + +webserver: + host: "0.0.0.0" + httpPort: 8090 + minThreads: 24 + maxThreads: 200 + stopTimeout: 30000 + idleTimeout: 30000 + threadPoolWorkQueueSize: 100 + requestHeaderSize: 131072 + responseHeaderSize: 131072 + customFilters: "" + +catalog: + cacheEvictionIntervalMs: 3600000 + classloader: + isolated: true + +authorization: + enable: false + serviceAdmins: "anonymous" + +auxService: + names: "iceberg-rest" + +icebergRest: + classpath: "iceberg-rest-server/libs, iceberg-rest-server/conf" + host: "0.0.0.0" + httpPort: 9001 + catalogBackend: "memory" + warehouse: "/tmp/" + +authenticators: simple + +authenticator: + oauth: + serviceAudience: test + defaultSignKey: MIIAIjBNBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqmmqfSy8vH9BMKZLIjPHNTClH7yyykV/J/dfNwwicoYCBQgLOLRq59nAiJ9/WOkIq7zIXQ8iZU5XmI0bRSo3Ah7G4uF6CUbpny+n4zxwTfEEJ3dVC1Aa1g3DZbf8mN76B2ykf6z4FEbTWVBp0xMZ14YBOIuOUkN4F/x8bQNYRPl0yepLBZf6uY26f2o5+yKBcpAk7K/pGoD4v+DKpt/A8bvf4fy3JpZERsMPS/veeyIqR6f+455KLjRabBpxl5xIo8iUer5O0Ci8xbQMci4ErRRemm5n1e74Kqpz5u/TcLIPdMLXJ57fLl9t7V9BtLyRTjyooJpnl/lz+kJ+VIt1kQICNPMB + serverUri: http://57.185.211.74:8080 + tokenPath: /realms/myrealm/protocol/openid-connect/token + +audit: + enabled: false + writer: + className: "org.apache.gravitino.audit.FileAuditWriter" + file: + fileName: "gravitino_audit.log" + flushIntervalSecs: 10 + append: true + formatter: + className: "org.apache.gravitino.audit.SimpleFormatter" + +metrics: + timeSlidingWindowSecs: 60 Review Comment: Yes , all the items in values.yaml can be customized when run the `helm install` command. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
