-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Adding Basic Auth to access Helm repo (#77)
- Loading branch information
Engin Diri
authored
Feb 5, 2022
1 parent
b67daf1
commit 65ecf48
Showing
8 changed files
with
142 additions
and
27 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
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,3 +1,25 @@ | ||
helmRegistries: | ||
registryNames: | ||
- bitnami | ||
- bitnami | ||
override: | ||
- registry: | ||
url: "http://localhost:8080/index.yaml" # Url to the index file | ||
secretRef: | ||
name: "chartmuseum" # Name of the secret containing the username and password | ||
userKey: "username" # Key of the username in the secret | ||
passKey: "password" # Key of the password in the secret | ||
charts: # Chart names | ||
- azure-pipelines-agent | ||
- starboard-exporter | ||
- registry: | ||
url: "http://localhost:8080" # Url to the index file | ||
secretRef: | ||
name: "chartmuseum" # Name of the secret containing the username and password | ||
userKey: "username" # Key of the username in the secret | ||
passKey: "password" # Key of the password in the secret | ||
charts: # Chart names | ||
- starboard-operator | ||
- registry: | ||
url: "https://aquasecurity.github.io/helm-charts/" # Url to the index file | ||
charts: # Chart names | ||
- test |
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
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