danhuawang commented on code in PR #56: URL: https://github.com/apache/gravitino-playground/pull/56#discussion_r1721676175
########## helm-chart/values.yaml: ########## @@ -0,0 +1,150 @@ +# Global settings +global: + storageClass: "" + namespace: gravitino-playground + +# Hive settings +hive: + image: + repository: datastrato/hive + tag: 2.7.3-no-yarn + pullPolicy: IfNotPresent + resources: + limits: + cpu: 3 + memory: 3Gi + requests: + cpu: 1 + memory: 1Gi + +# Gravitino settings +gravitino: + image: + repository: datastrato/gravitino + tag: 0.5.1 + pullPolicy: IfNotPresent + resources: + limits: + cpu: 500m + memory: 500Mi + requests: + cpu: 200m + memory: 200Mi + +# Trino settings +trino: + image: + repository: datastrato/trino + tag: 435-gravitino-0.5.1 + pullPolicy: IfNotPresent + resources: + limits: + cpu: 1 + memory: 2Gi + requests: + cpu: 500m + memory: 1Gi + +# PostgreSQL settings +postgresql: + image: + repository: postgres + tag: "13" + pullPolicy: IfNotPresent + resources: + limits: + cpu: 1 + memory: 500Mi + requests: + cpu: 200m + memory: 200Mi + persistence: + enabled: true + size: 1Gi + +# MySQL settings +mysql: + image: + repository: mysql + tag: "8.0" + pullPolicy: IfNotPresent + resources: + limits: + cpu: 1 + memory: 500Mi + requests: + cpu: 200m + memory: 200Mi + persistence: + enabled: true + size: 1Gi + +# Spark settings +spark: + image: + repository: spark + tag: 3.4.1-scala2.12-java11-ubuntu + pullPolicy: IfNotPresent + resources: + limits: + cpu: 1 + memory: 1Gi + requests: + cpu: 500m + memory: 500Mi + +# Jupyter settings +jupyter: + image: + repository: jupyter/minimal-notebook + tag: latest + pullPolicy: IfNotPresent + resources: + limits: + cpu: 500m + memory: 500Mi + requests: + cpu: 200m + memory: 200Mi + persistence: + enabled: true + size: 1Gi + +# Service specific settings +service: + type: ClusterIP Review Comment: Yes, I agreed to use ClusterIP in demo -- 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]
