File tree Expand file tree Collapse file tree 3 files changed +24
-5
lines changed
Expand file tree Collapse file tree 3 files changed +24
-5
lines changed Original file line number Diff line number Diff line change 11# hive-metastore
22Hive-metastore helm chart
3+ ## Installation
4+ Hive metastore requires Postgres DB. It can be configured with values e.g.:
5+ ```
6+ postgres:
7+ host: "postgresql"
8+ port: 5432
9+ db: metastore
10+ username: admin
11+ password: pass
12+ ```
13+ The docker image is published on github repository (ghcr.io). Login to github repository to pull image:
14+ ```
15+ docker login ghcr.io -u [github_username]
16+ ```
17+ To install hive-metastore execute
18+ ```
19+ helm install hms hive-metastore
20+ ```
Original file line number Diff line number Diff line change 1- # Hive metastore standalone image
2- Hive metastore requires metastore db. This image requires Postgres DB.
1+ # Hive metastore (standalone) docker image
2+ Requirements: postgres db.
3+ Hive metastore will initialize schema on startup. Expose port 9083 to connect.
34## Required parameters
4- Hive metastore requires postgres conneciton parameters.
55| Param name | Example |
66| -----------| -------- |
77| DATABASE_PORT| 5432|
Original file line number Diff line number Diff line change 55replicaCount : 1
66
77image :
8- repository : " localhost:5000/hms-test "
8+ repository : " ghcr.io/getindata/hive-metastore "
99 pullPolicy : IfNotPresent
1010 # Overrides the image tag whose default is the chart appVersion.
11- tag : " latest "
11+ tag : " v0.0.1 "
1212
1313imagePullSecrets : []
1414nameOverride : " "
@@ -46,6 +46,7 @@ securityContext: {}
4646 # runAsNonRoot: true
4747 # runAsUser: 1000
4848
49+ # change to NodePort to allow access outside of k8s
4950service :
5051 type : ClusterIP
5152 port : 9083
You can’t perform that action at this time.
0 commit comments