Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove client-auth-token from stores #3387

Merged
merged 1 commit into from
Jun 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -349,12 +349,6 @@ spec:
configMapKeyRef:
name: mobilecoin-network
key: network
- name: CLIENT_AUTH_TOKEN_SECRET
valueFrom:
secretKeyRef:
name: client-auth-token
key: token
optional: true
livenessProbe:
grpc:
port: 3228
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -274,12 +274,6 @@ spec:
value: {{ .Values.fogView.rust.backtrace | quote }}
- name: RUST_LOG
value: {{ .Values.fogView.rust.log | quote }}
- name: CLIENT_AUTH_TOKEN_SECRET
valueFrom:
secretKeyRef:
name: client-auth-token
key: token
optional: true
- name: FOG_VIEW_SENTRY_DSN
valueFrom:
configMapKeyRef:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ data:
--watcher-db /fog-data/watcher
--client-responder-id "%(ENV_HOSTNAME)s.{{ include "fogServices.fullname" . }}-fog-ledger-store.{{ .Release.Namespace }}.svc.cluster.local:3228"
--client-listen-uri insecure-key-image-store://0.0.0.0:3228/?responder-id="%(ENV_HOSTNAME)s.{{ include "fogServices.fullname" . }}-fog-ledger-store.{{ .Release.Namespace }}.svc.cluster.local:3228"
{{- if (include "fogServices.clientAuth" .) }}
--client-auth-token-secret "%(ENV_CLIENT_AUTH_TOKEN_SECRET)s"
--client-auth-token-max-lifetime 31536000
{{- end }}
--ias-spid %(ENV_IAS_SPID)s
--ias-api-key %(ENV_IAS_API_KEY)s
--admin-listen-uri insecure-mca://127.0.0.1:8001/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ data:
command=/usr/bin/fog_view_server
--client-listen-uri insecure-fog-view-store://0.0.0.0:3225/?responder-id=%(ENV_HOSTNAME)s.{{ include "fogServices.fullname" . }}-fog-view-store.{{ .Release.Namespace }}:3225
--client-responder-id "%(ENV_HOSTNAME)s.{{ include "fogServices.fullname" . }}-fog-view-store.{{ .Release.Namespace }}:3225"
{{- if (include "fogServices.clientAuth" .) }}
--client-auth-token-secret "%(ENV_CLIENT_AUTH_TOKEN_SECRET)s"
--client-auth-token-max-lifetime 31536000
{{- end }}
--ias-spid %(ENV_IAS_SPID)s
--ias-api-key %(ENV_IAS_API_KEY)s
--admin-listen-uri insecure-mca://127.0.0.1:8001/
Expand Down