-
Notifications
You must be signed in to change notification settings - Fork 24
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
care partner alerts APNs configuration #296
base: master
Are you sure you want to change the base?
Conversation
It includes kafka channels that are watched for messages to trigger evaluation of alerts criteria used to then send push notifications to mobile devices. BACK-2554
The options key isn't permitted to be a null object, so only include it at all if shadowing is enabled.
b512892
to
ddfe3fc
Compare
configmap: | ||
enabled: true | ||
data_: | ||
pusherAPNSKeyID: "QA3495JW4S" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pusherAPNSKeyID: "QA3495JW4S" | |
PusherAPNSKeyID: "QA3495JW4S" |
enabled: true | ||
data_: | ||
pusherAPNSKeyID: "QA3495JW4S" | ||
pusherAPNSTeamID: "75U4X84TEG" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pusherAPNSTeamID: "75U4X84TEG" | |
PusherAPNSTeamID: "75U4X84TEG" |
data_: | ||
pusherAPNSKeyID: "QA3495JW4S" | ||
pusherAPNSTeamID: "75U4X84TEG" | ||
pusherAPNSBundleID: "org.tidepool.carepartner" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pusherAPNSBundleID: "org.tidepool.carepartner" | |
PusherAPNSBundleID: "org.tidepool.carepartner" |
valueFrom: | ||
configMapKeyRef: | ||
name: data | ||
key: pusherAPNSBundleID |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
key: pusherAPNSBundleID | |
key: PusherAPNSBundleID |
valueFrom: | ||
configMapKeyRef: | ||
name: data | ||
key: pusherAPNSTeamID |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
key: pusherAPNSTeamID | |
key: PusherAPNSTeamID |
valueFrom: | ||
secretKeyRef: | ||
name: data | ||
key: pusherAPNSSigningKey |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
key: pusherAPNSSigningKey | |
key: PusherAPNSSigningKey |
# If you're running locally via the development cluster, you'll need to | ||
# base64-encode the contents of that file, and add the resulting data to the | ||
# secret. You'll also need to enable the secret in local/Tiltconfig.yaml. | ||
pusherAPNSSigningKey: {{ .Values.secret.data_.pusherAPNSSigningKey | default "" | quote }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pusherAPNSSigningKey: {{ .Values.secret.data_.pusherAPNSSigningKey | default "" | quote }} | |
PusherAPNSSigningKey: {{ .Values.secret.data_.Pusher.APNS.SigningKey | default "" | quote }} |
{{ include "charts.labels.standard" . }} | ||
{{ with .Values.configmap.data_ }} | ||
data: | ||
pusherAPNSKeyID: {{ .pusherAPNSKeyID | default "" }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pusherAPNSKeyID: {{ .pusherAPNSKeyID | default "" }} | |
pusherAPNSKeyID: {{ .PusherAPNSKeyID | default "" }} |
{{ with .Values.configmap.data_ }} | ||
data: | ||
pusherAPNSKeyID: {{ .pusherAPNSKeyID | default "" }} | ||
pusherAPNSTeamID: {{ .pusherAPNSTeamID | default "" }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pusherAPNSTeamID: {{ .pusherAPNSTeamID | default "" }} | |
PusherAPNSTeamID: {{ .pusherAPNSTeamID | default "" }} |
data: | ||
pusherAPNSKeyID: {{ .pusherAPNSKeyID | default "" }} | ||
pusherAPNSTeamID: {{ .pusherAPNSTeamID | default "" }} | ||
pusherAPNSBundleID: {{ .pusherAPNSBundleID | default "" }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pusherAPNSBundleID: {{ .pusherAPNSBundleID | default "" }} | |
PusherAPNSBundleID: {{ .pusherAPNSBundleID | default "" }} |
No description provided.