cluster

Infrastructure files for Nordgedanken and Midnightthoughts.
git clone git://archive.git.mtrnord.blog/MTRNord/cluster.git
Log | Files | Refs | README

commit e5f7b94ead721386127a003d759fa336b1a28d99
parent e644c626006d35607c18a1c5cd76a97b5a7422bd
Author: MTRNord <mtrnord1@gmail.com>
Date:   Wed, 28 Jun 2023 20:19:42 +0200

Allow cluster on arm

Diffstat:
Mapps/base/postgres-operator/release.yaml | 14++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/apps/base/postgres-operator/release.yaml b/apps/base/postgres-operator/release.yaml @@ -16,7 +16,12 @@ spec: install: remediation: retries: 3 - #values: {} + values: + tolerations: + - key: "arch" + operator: "Equal" + value: "arm64" + effect: "NoSchedule" --- apiVersion: helm.toolkit.fluxcd.io/v2beta1 kind: HelmRelease @@ -35,4 +40,9 @@ spec: install: remediation: retries: 3 - #values: {} + values: + tolerations: + - key: "arch" + operator: "Equal" + value: "arm64" + effect: "NoSchedule"