Skip to content

Commit 3ad5761

Browse files
committed
Add an explicit repositories definitions (so we can easily SSL-verify-ignore them:) )
1 parent b2f83cb commit 3ad5761

File tree

1 file changed

+21
-2
lines changed

1 file changed

+21
-2
lines changed

docs/1-the-manual-menace/2-argocd.md

+21-2
Original file line numberDiff line numberDiff line change
@@ -76,15 +76,34 @@ When something is seen as not matching the required state in Git, an application
7676
namespaces:
7777
- ${TEAM_NAME}-ci-cd
7878
argocd_cr:
79-
repositoryCredentials: |
80-
- url: https://${GIT_SERVER}
79+
initialRepositories: |
80+
- url: https://${GIT_SERVER}/${TEAM_NAME}/tech-exercise.git
8181
type: git
8282
passwordSecret:
8383
key: password
8484
name: git-auth
8585
usernameSecret:
8686
key: username
8787
name: git-auth
88+
insecure: true
89+
- url: https://${GIT_SERVER}/${TEAM_NAME}/pet-battle.git
90+
type: git
91+
passwordSecret:
92+
key: password
93+
name: git-auth
94+
usernameSecret:
95+
key: username
96+
name: git-auth
97+
insecure: true
98+
- url: https://${GIT_SERVER}/${TEAM_NAME}/pet-battle-api.git
99+
type: git
100+
passwordSecret:
101+
key: password
102+
name: git-auth
103+
usernameSecret:
104+
key: username
105+
name: git-auth
106+
insecure: true
88107
EOF
89108
```
90109

0 commit comments

Comments
 (0)