1
0
mirror of https://github.com/funkypenguin/geek-cookbook/ synced 2025-12-13 01:36:23 +00:00

Fix indentation in secret-replicator

Co-authored-by: David Young <davidy@funkypenguin.co.nz>
This commit is contained in:
Benjamin Durham
2022-10-03 15:32:57 +13:00
committed by GitHub
parent ce009c22b3
commit 663509a575

View File

@@ -127,7 +127,7 @@ Note that the following values changed from default, above:
Lastly, having set the scene above, we define the HelmRelease which will actually deploy the secret-replicator controller into the cluster, with the config we defined above. I save this in my flux repo:
```yaml title="/secret-replicator/helmrelease-secret-replicator.yaml"
```yaml title="/secret-replicator/helmrelease-secret-replicator.yaml"
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
@@ -149,7 +149,7 @@ spec:
- kind: ConfigMap
name: secret-replicator-helm-chart-value-overrides
valuesKey: values.yaml # This is the default, but best to be explicit for clarity
```
```
--8<-- "kubernetes-why-not-config-in-helmrelease.md"