Skip to content

Commit

Permalink
Merge pull request #4 from decentralized-cloud/added-jwks
Browse files Browse the repository at this point in the history
Added JWKS URL to the helm chart
  • Loading branch information
mortezaalizadeh committed Feb 14, 2021
2 parents 06a0e3a + 3174d82 commit fc43b36
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion helm-charts/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.0
version: 0.1.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 2 additions & 0 deletions helm-charts/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ spec:
value: "{{ .Values.pod.database.name }}"
- name: USER_DATABASE_COLLECTION_NAME
value: "{{ .Values.pod.database.collection }}"
- name: JWKS_URL
value: "{{ .Values.pod.idp.jwksURL }}"
ports:
- name: grpc
containerPort: {{ .Values.pod.grpcport }}
Expand Down
2 changes: 2 additions & 0 deletions helm-charts/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ pod:
connection_string: "mongodb://mongodb:27017"
name: "user"
collection: "user"
idp:
jwksURL: ""

service:
type: ClusterIP
Expand Down

0 comments on commit fc43b36

Please sign in to comment.