Skip to content

Commit

Permalink
receive auth user and pass on helm charts
Browse files Browse the repository at this point in the history
  • Loading branch information
henrod committed Aug 14, 2017
1 parent d21d20e commit 01038c6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion helm/charts/maestro/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: maestro
home: https://github.com/topfreegames/maestro
description: Maestro api and worker
version: 3.2.0
version: 3.2.1
maintainers:
- name: TFGCo
email: backend@tfgco.com
6 changes: 6 additions & 0 deletions helm/charts/maestro/templates/maestro-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,9 @@ spec:
value: {{ .Values.oauth_domains }}
- name: MAESTRO_EXTENSIONS_REDIS_URL
value: {{ .Values.redis_url }}
- name: MAESTRO_BASICAUTH_USERNAME
value: {{ .Values.basicauth_user }}
- name: MAESTRO_BASICAUTH_PASSWORD
value: {{ .Values.basicauth_pass }}
- name: MAESTRO_BASICAUTH_TRYOAUTHIFUNSET
value: "true"
2 changes: 2 additions & 0 deletions helm/charts/maestro/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,5 @@ oauth_domains: "example.com other.com"
tls_crt: ""
tls_key: ""
maestro_url: "maestro.example.com"
basicauth_user: user
basicauth_pass: pass
2 changes: 1 addition & 1 deletion metadata/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
package metadata

//Version of Maestro
var Version = "3.2.0"
var Version = "3.2.1"

//KubeVersion is the desired Kubernetes version
var KubeVersion = "v1.7.0"

0 comments on commit 01038c6

Please sign in to comment.