Skip to content

Commit

Permalink
Merge pull request #35 from blockscout/quicknode-marketplace-integrat…
Browse files Browse the repository at this point in the history
…ion-0.1.6

Update quicknode-marketplace-integration envs
  • Loading branch information
alik-agaev authored Sep 5, 2024
2 parents 5a05f73 + 6d855d9 commit 8c0d86b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/quicknode-marketplace-integration/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.5
version: 0.1.6

# 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
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,13 @@ metadata:
type: Opaque
data:
DATABASE_URL: {{ .Values.config.databaseUrl | b64enc | quote }}
BASIC_AUTH_USERNAME: {{ .Values.config.basicAuth.username | b64enc | quote }}
BASIC_AUTH_PASSWORD: {{ .Values.config.basicAuth.password | b64enc | quote }}
BASIC_AUTH_USERNAME_RPC: {{ .Values.config.basicAuthRPC.username | b64enc | quote }}
BASIC_AUTH_PASSWORD_RPC: {{ .Values.config.basicAuthRPC.password | b64enc | quote }}
BASIC_AUTH_USERNAME_REST: {{ .Values.config.basicAuthREST.username | b64enc | quote }}
BASIC_AUTH_PASSWORD_REST: {{ .Values.config.basicAuthREST.password | b64enc | quote }}
BASIC_AUTH_USERNAME_INT: {{ .Values.config.basicAuthINT.username | b64enc | quote }}
BASIC_AUTH_PASSWORD_INT: {{ .Values.config.basicAuthINT.password | b64enc | quote }}
INTERPRETER_URL: {{ .Values.config.interpreterURL | b64enc | quote }}
QN_SSO_SECRET: {{ .Values.config.qnSsoSecret | b64enc | quote }}
JWT_SECRET: {{ .Values.config.jwtSecret | b64enc | quote }}
BLOCKSCOUT_API_KEY: {{ .Values.config.blockscoutApiKey | b64enc | quote }}
9 changes: 8 additions & 1 deletion charts/quicknode-marketplace-integration/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,16 @@ imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
config:
basicAuth:
basicAuthRPC:
username: username
password: password
basicAuthREST:
username: username
password: password
basicAuthINT:
username: ""
password: ""
interpreterURL: ""
qnSsoSecret: secret
jwtSecret: secret
databaseUrl: postgresql://user:password@postgres:5432/database
Expand Down

0 comments on commit 8c0d86b

Please sign in to comment.