Skip to content

Commit b655cbd

Browse files
authored
Fix: Doc typos intialCerts->initialCerts (#1869)
Signed-off-by: Oliver Gondža <ogondza@gmail.com>
1 parent c39139a commit b655cbd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

controllers/argocd/configmap_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ func TestReconcileArgoCD_reconcileTLSCerts_withInitialCertsUpdate(t *testing.T)
224224
},
225225
configMap))
226226

227-
// Any certs added to .spec.tls.intialCerts of Argo CD CR after the cluster creation
227+
// Any certs added to .spec.tls.initialCerts of Argo CD CR after the cluster creation
228228
// should not affect the argocd-tls-certs-cm configmap.
229229
want := []string{}
230230
if k := stringMapKeys(configMap.Data); !reflect.DeepEqual(want, k) {

docs/reference/argocd.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1746,7 +1746,7 @@ spec:
17461746
initialCerts: []
17471747
```
17481748

1749-
### IntialCerts Example
1749+
### InitialCerts Example
17501750

17511751
Initial set of repository certificates to be configured in Argo CD upon creation of the cluster.
17521752

@@ -1758,7 +1758,7 @@ kind: ArgoCD
17581758
metadata:
17591759
name: example-argocd
17601760
labels:
1761-
example: intialCerts
1761+
example: initialCerts
17621762
spec:
17631763
tls:
17641764
ca: {}

0 commit comments

Comments
 (0)