mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-09-22 23:53:12 +08:00
build(kubernetes): Support hcloud (Hetzner) (#537)
feat: using `hcloud` because it's Hetzner's own preferred short name.
This commit is contained in:
parent
f449775cd6
commit
3b687201a6
@ -11,6 +11,7 @@ parameters:
|
|||||||
reclaimPolicy: Retain
|
reclaimPolicy: Retain
|
||||||
#volumeBindingMode: Immediate
|
#volumeBindingMode: Immediate
|
||||||
allowVolumeExpansion: true
|
allowVolumeExpansion: true
|
||||||
|
---
|
||||||
{{- else if (eq (.Values.cloud | toString) "aws") }}
|
{{- else if (eq (.Values.cloud | toString) "aws") }}
|
||||||
#
|
#
|
||||||
# AWS resizable disk example
|
# AWS resizable disk example
|
||||||
@ -25,8 +26,8 @@ parameters:
|
|||||||
reclaimPolicy: Retain
|
reclaimPolicy: Retain
|
||||||
#volumeBindingMode: Immediate
|
#volumeBindingMode: Immediate
|
||||||
allowVolumeExpansion: true
|
allowVolumeExpansion: true
|
||||||
{{- end }}
|
|
||||||
---
|
---
|
||||||
|
{{- end }}
|
||||||
apiVersion: "clickhouse.altinity.com/v1"
|
apiVersion: "clickhouse.altinity.com/v1"
|
||||||
kind: "ClickHouseInstallation"
|
kind: "ClickHouseInstallation"
|
||||||
metadata:
|
metadata:
|
||||||
@ -96,6 +97,8 @@ spec:
|
|||||||
storageClassName: gce-resizable
|
storageClassName: gce-resizable
|
||||||
{{- else if (eq (.Values.cloud | toString) "aws") }}
|
{{- else if (eq (.Values.cloud | toString) "aws") }}
|
||||||
storageClassName: gp2-resizable
|
storageClassName: gp2-resizable
|
||||||
|
{{- else if (eq (.Values.cloud | toString) "hcloud") }}
|
||||||
|
storageClassName: hcloud-volumes
|
||||||
{{- end }}
|
{{- end }}
|
||||||
accessModes:
|
accessModes:
|
||||||
- ReadWriteOnce
|
- ReadWriteOnce
|
||||||
|
Loading…
x
Reference in New Issue
Block a user