-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Configure Github SSO login for ArgoCD
- Loading branch information
1 parent
5c42015
commit f350961
Showing
6 changed files
with
47 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
certs | ||
spicy-secrets/** | ||
spicy-secrets/** | ||
**/charts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
apiVersion: secrets.infisical.com/v1alpha1 | ||
kind: InfisicalSecret | ||
metadata: | ||
name: dex-github | ||
namespace: faf-ops | ||
spec: | ||
authentication: | ||
serviceToken: | ||
serviceTokenSecretReference: | ||
secretName: infisical-service-token | ||
secretNamespace: faf-ops | ||
secretsScope: | ||
envSlug: {{.Values.infisicalSlug}} | ||
secretsPath: "/argocd" | ||
managedSecretReference: | ||
secretName: argocd | ||
secretNamespace: dex-github |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
argocd: | ||
dex.config: | | ||
connectors: | ||
- type: gitlab | ||
# Required field for connector id. | ||
id: github | ||
# Required field for connector name. | ||
name: GitHub | ||
config: | ||
clientID: 838e6d390d5cf6932ca5 | ||
clientSecret: $dex-github:GITHUB_CLIENT_SECRET | ||
orgs: | ||
- name: FAForever | ||
# A white list of teams. Only include group claims for these teams. | ||
teams: | ||
- argocd-test | ||
# Flag which indicates that all user groups and teams should be loaded. | ||
loadAllGroups: false | ||
useLoginAsID: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
argocd: | ||
podAnnotations: | ||
reloader.stakater.com/auto: "true" |