fix(clustertool): indent corrections (#33919)

**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
Correct some indent details. Already was irritating on my cluster, so
why not change upstream. Also it is matching with the indent of the
`.Values` in the same file
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [x] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code
- [ ] 📜 Documentation Changes

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made changes to the documentation
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [x] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or
`fix(docs):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._
This commit is contained in:
Boemeltrein
2025-04-03 22:33:20 +02:00
committed by GitHub
parent a8797a0f42
commit 81f98f2b5b
3 changed files with 127 additions and 127 deletions
@@ -1,76 +1,76 @@
apiVersion: helm.toolkit.fluxcd.io/v2 apiVersion: helm.toolkit.fluxcd.io/v2
kind: HelmRelease kind: HelmRelease
metadata: metadata:
name: descheduler name: descheduler
namespace: kube-system namespace: kube-system
spec: spec:
interval: 15m interval: 15m
chart: chart:
spec: spec:
chart: descheduler chart: descheduler
version: 0.32.2 version: 0.32.2
sourceRef: sourceRef:
kind: HelmRepository kind: HelmRepository
name: home-ops-mirror name: home-ops-mirror
namespace: flux-system namespace: flux-system
interval: 15m interval: 15m
timeout: 20m timeout: 20m
maxHistory: 3 maxHistory: 3
install: install:
createNamespace: true createNamespace: true
remediation: remediation:
retries: 3 retries: 3
upgrade: upgrade:
cleanupOnFail: true cleanupOnFail: true
remediation: remediation:
retries: 3 retries: 3
uninstall: uninstall:
keepHistory: false keepHistory: false
values: values:
replicas: 2 replicas: 2
kind: Deployment kind: Deployment
deschedulerPolicyAPIVersion: descheduler/v1alpha2 deschedulerPolicyAPIVersion: descheduler/v1alpha2
deschedulerPolicy: deschedulerPolicy:
profiles: profiles:
- name: Default - name: Default
pluginConfig: pluginConfig:
- name: DefaultEvictor - name: DefaultEvictor
args: args:
evictFailedBarePods: true evictFailedBarePods: true
evictLocalStoragePods: true evictLocalStoragePods: true
evictSystemCriticalPods: true evictSystemCriticalPods: true
- name: RemoveFailedPods - name: RemoveFailedPods
args: args:
reasons: reasons:
- ContainerStatusUnknown - ContainerStatusUnknown
- NodeAffinity - NodeAffinity
- NodeShutdown - NodeShutdown
- Terminated - Terminated
- UnexpectedAdmissionError - UnexpectedAdmissionError
includingInitContainers: true includingInitContainers: true
excludeOwnerKinds: excludeOwnerKinds:
- Job - Job
minPodLifetimeSeconds: 1800 minPodLifetimeSeconds: 1800
- name: RemovePodsViolatingInterPodAntiAffinity - name: RemovePodsViolatingInterPodAntiAffinity
- name: RemovePodsViolatingNodeAffinity - name: RemovePodsViolatingNodeAffinity
args: args:
nodeAffinityType: nodeAffinityType:
- requiredDuringSchedulingIgnoredDuringExecution - requiredDuringSchedulingIgnoredDuringExecution
- name: RemovePodsViolatingNodeTaints - name: RemovePodsViolatingNodeTaints
- name: RemovePodsViolatingTopologySpreadConstraint - name: RemovePodsViolatingTopologySpreadConstraint
plugins: plugins:
balance: balance:
enabled: enabled:
- RemovePodsViolatingTopologySpreadConstraint - RemovePodsViolatingTopologySpreadConstraint
deschedule: deschedule:
enabled: enabled:
- RemoveFailedPods - RemoveFailedPods
- RemovePodsViolatingInterPodAntiAffinity - RemovePodsViolatingInterPodAntiAffinity
- RemovePodsViolatingNodeAffinity - RemovePodsViolatingNodeAffinity
- RemovePodsViolatingNodeTaints - RemovePodsViolatingNodeTaints
service: service:
enabled: true enabled: true
serviceMonitor: serviceMonitor:
enabled: false enabled: false
leaderElection: leaderElection:
enabled: true enabled: true
@@ -1,30 +1,30 @@
apiVersion: helm.toolkit.fluxcd.io/v2 apiVersion: helm.toolkit.fluxcd.io/v2
kind: HelmRelease kind: HelmRelease
metadata: metadata:
name: cert-manager name: cert-manager
namespace: cert-manager namespace: cert-manager
spec: spec:
interval: 5m interval: 5m
chart: chart:
spec: spec:
chart: cert-manager chart: cert-manager
version: v1.17.1 version: v1.17.1
sourceRef: sourceRef:
kind: HelmRepository kind: HelmRepository
name: home-ops-mirror name: home-ops-mirror
namespace: flux-system namespace: flux-system
interval: 5m interval: 5m
install: install:
createNamespace: true createNamespace: true
crds: CreateReplace crds: CreateReplace
remediation: remediation:
retries: 3 retries: 3
upgrade: upgrade:
crds: CreateReplace crds: CreateReplace
remediation: remediation:
retries: 3 retries: 3
values: values:
dns01RecursiveNameservers: "1.1.1.1:53,1.0.0.1:53" dns01RecursiveNameservers: "1.1.1.1:53,1.0.0.1:53"
dns01RecursiveNameserversOnly: false dns01RecursiveNameserversOnly: false
installCRDs: true installCRDs: true
enableCertificateOwnerRef: true enableCertificateOwnerRef: true
@@ -1,33 +1,33 @@
apiVersion: helm.toolkit.fluxcd.io/v2 apiVersion: helm.toolkit.fluxcd.io/v2
kind: HelmRelease kind: HelmRelease
metadata: metadata:
name: cloudnative-pg name: cloudnative-pg
namespace: cloudnative-pg namespace: cloudnative-pg
spec: spec:
interval: 5m interval: 5m
chart: chart:
spec: spec:
chart: cloudnative-pg chart: cloudnative-pg
version: 0.23.2 version: 0.23.2
sourceRef: sourceRef:
kind: HelmRepository kind: HelmRepository
name: cloudnative-pg name: cloudnative-pg
namespace: flux-system namespace: flux-system
interval: 5m interval: 5m
install: install:
createNamespace: true createNamespace: true
crds: CreateReplace crds: CreateReplace
remediation: remediation:
retries: 3 retries: 3
upgrade: upgrade:
crds: CreateReplace crds: CreateReplace
remediation: remediation:
retries: 3 retries: 3
values: values:
crds: crds:
create: true create: true
replicaCount: 2 replicaCount: 2
# monitoring: # monitoring:
# podMonitorEnabled: false # podMonitorEnabled: false
# grafanaDashboard: # grafanaDashboard:
# create: true # create: true