This repository has been archived by the owner on Jan 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Secrets to store Provider API access keys and Update docs (#9)
* Update Readme instructions and yaml files for cluster-manager deployment * Update Readme instructions and yaml files for cluster-manager deployment * Update format or wercker instruction readme doc * Update deploy readme and wercker readme for some corrections * Update deploy readme and wercker readme for some corrections * Store Provider API Access Keys into a Secret to secure the data * Update docs
- Loading branch information
1 parent
f1bf014
commit 65174cf
Showing
8 changed files
with
154 additions
and
75 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
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,22 @@ | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: {{ template "name" . }}-provider-access-keys | ||
namespace: {{ .Values.federationNamespace }} | ||
type: Opaque | ||
data: | ||
{{ if .Values.awsAccessKeyId }} | ||
awsAccessKeyId: {{ .Values.awsAccessKeyId | b64enc | quote }} | ||
{{ end }} | ||
{{ if .Values.awsSecretAccessKey }} | ||
awsSecretAccessKey: {{ .Values.awsSecretAccessKey | b64enc | quote }} | ||
{{ end }} | ||
{{ if .Values.okeBearerToken }} | ||
okeBearerToken: {{ .Values.okeBearerToken | b64enc | quote }} | ||
{{ end }} | ||
{{ if .Values.okeAuthGroup }} | ||
okeAuthGroup: {{ .Values.okeAuthGroup | b64enc | quote }} | ||
{{ end }} | ||
{{ if .Values.okeCloudAuthId }} | ||
okeCloudAuthId: {{ .Values.okeCloudAuthId | b64enc | quote }} | ||
{{ end }} |
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