Skip to content

Commit 1f415a1

Browse files
readme
1 parent 995e7a5 commit 1f415a1

File tree

3 files changed

+24
-5
lines changed

3 files changed

+24
-5
lines changed

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,20 @@
11
# hive-metastore
22
Hive-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+
```

docker/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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|

hive-metastore/values.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
replicaCount: 1
66

77
image:
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

1313
imagePullSecrets: []
1414
nameOverride: ""
@@ -46,6 +46,7 @@ securityContext: {}
4646
# runAsNonRoot: true
4747
# runAsUser: 1000
4848

49+
# change to NodePort to allow access outside of k8s
4950
service:
5051
type: ClusterIP
5152
port: 9083

0 commit comments

Comments
 (0)