Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions kubernetes/helm/templates/ice-rest-catalog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ stringData:
secretAccessKey: {{ .Values.iceRestCatalog.s3.secretAccessKey }}
region: {{ .Values.iceRestCatalog.s3.region }}
bearerTokens:
- value: foo
- value: {{ .Values.iceRestCatalog.bearerToken }}
anonymousAccess:
enabled: false
---
apiVersion: v1
kind: Service
Expand Down Expand Up @@ -56,8 +58,7 @@ spec:
secretName: ice-rest-catalog
containers:
- name: iceberg
# image: altinity/ice-rest-catalog:latest
image: altinity/ice-rest-catalog:debug-with-ice-0.0.0-SNAPSHOT
image: "{{ .Values.iceRestCatalog.image.repository }}:{{ .Values.iceRestCatalog.image.tag }}"
imagePullPolicy: "Always" # for test purposes only
ports:
- containerPort: 5000 # iceberg
Expand Down
9 changes: 6 additions & 3 deletions kubernetes/helm/values-minikube.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ keeper:
size: "5Gi"
image:
repository: "altinity/clickhouse-keeper"
tag: "25.8.12.20747.altinityantalya"
tag: "26.3.13.20001.altinityantalya"
pullPolicy: "IfNotPresent"

# ClickHouse Vector settings
Expand All @@ -31,7 +31,7 @@ vector:
effect: "NoSchedule"
image:
repository: "altinity/clickhouse-server"
tag: "25.8.12.20747.altinityantalya"
tag: "26.3.13.20001.altinityantalya"

# ClickHouse Swarm settings
swarm:
Expand All @@ -55,7 +55,7 @@ swarm:
affinity:
image:
repository: "altinity/clickhouse-server"
tag: "25.8.12.20747.altinityantalya"
tag: "26.3.13.20001.altinityantalya"

# Ice Rest Catalog settings
iceRestCatalog:
Expand All @@ -67,6 +67,9 @@ iceRestCatalog:
region: minio
storage:
class: "" # Defaults to global.storageClass if empty
image:
repository: "altinity/ice-rest-catalog"
tag: "debug-with-ice-0.19.0"

# etcd settings
etcd:
Expand Down
10 changes: 7 additions & 3 deletions kubernetes/helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ keeper:
size: "25Gi"
image:
repository: "altinity/clickhouse-keeper"
tag: "25.8.12.20747.altinityantalya"
tag: "26.3.13.20001.altinityantalya"
pullPolicy: "IfNotPresent"

# ClickHouse Vector settings
Expand All @@ -32,7 +32,7 @@ vector:
effect: "NoSchedule"
image:
repository: "altinity/clickhouse-server"
tag: "25.8.12.20747.altinityantalya"
tag: "26.3.13.20001.altinityantalya"

# ClickHouse Swarm settings
swarm:
Expand Down Expand Up @@ -66,18 +66,22 @@ swarm:
topologyKey: "kubernetes.io/hostname"
image:
repository: "altinity/clickhouse-server"
tag: "25.8.12.20747.altinityantalya"
tag: "26.3.13.20001.altinityantalya"

# Ice Rest Catalog settings
iceRestCatalog:
catalogBucket: bucket1
bearerToken: foo
s3:
endpoint: ""
accessKeyID: ""
secretAccessKey: ""
region: us-east-1
storage:
class: "" # Defaults to global.storageClass if empty
image:
repository: "altinity/ice-rest-catalog"
tag: "debug-with-ice-0.19.0"

# etcd settings
etcd:
Expand Down