Skip to content

Commit

Permalink
add trino
Browse files Browse the repository at this point in the history
  • Loading branch information
reinthal committed Nov 6, 2024
1 parent 1ff40e4 commit f83fa66
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 0 deletions.
5 changes: 5 additions & 0 deletions apps/base/trino/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: trino
resources:
- trino.yaml
52 changes: 52 additions & 0 deletions apps/base/trino/trino.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
apiVersion: v1
kind: Namespace
metadata:
name: trino
labels:
toolkit.fluxcd.io/tenant: kog-team
---
apiVersion: helm.toolkit.fluxcd.io/v2beta2
kind: HelmRepository
metadata:
name: trino
spec:
url: https://trinodb.github.io/charts
---
apiVersion: helm.toolkit.fluxcd.io/v2beta2
kind: HelmRelease
metadata:
name: trino-cluster
namespace: trino
spec:
interval: 5m
chart:
spec:
chart: trino/trino
version: "464"
sourceRef:
kind: HelmRepository
name: trino
namespace: flux-system
interval: 1m
values:
image:
tag: "464"
server:
workers: 3
coordinator:
jvm:
maxHeapSize: "4G"
worker:
jvm:
maxHeapSize: "4G"
catalogs:
lakehouse: |-
connector.name=iceberg
fs.native-s3.enabled=true
iceberg.catalog.type=rest
iceberg.rest-catalog.security=NONE
iceberg.rest-catalog.uri=https\://nessie.local.reinthal.cc/iceberg/
iceberg.rest-catalog.vended-credentials-enabled=false
s3.endpoint=http\://nas.reinthal.me\:9000
s3.path-style-access=true
s3.region=us-east-1
1 change: 1 addition & 0 deletions apps/staging/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ resources:
- ../base/dagster
- ../base/ray
- ../base/cyberchef
- ../base/trino

0 comments on commit f83fa66

Please sign in to comment.